diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-05-27 19:10:50 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-05-27 19:10:50 +0200 |
commit | 2ea1ccf2e696422af5f4ee482de68983a95a19d2 (patch) | |
tree | 3620bc712db5c276f3ec429c996e3640fda13506 | |
parent | 68c16c2db78dec4af09da7bec5d386422d9264a1 (diff) | |
download | nextpnr-2ea1ccf2e696422af5f4ee482de68983a95a19d2.tar.gz nextpnr-2ea1ccf2e696422af5f4ee482de68983a95a19d2.tar.bz2 nextpnr-2ea1ccf2e696422af5f4ee482de68983a95a19d2.zip |
Added explanation, fixes issue #278
-rw-r--r-- | common/command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc index 65562528..3eafdb17 100644 --- a/common/command.cc +++ b/common/command.cc @@ -107,7 +107,7 @@ po::options_description CommandHandler::getGeneralOptions() general.add_options()("force,f", "keep running after errors"); #ifndef NO_GUI general.add_options()("gui", "start gui"); - general.add_options()("gui-no-aa", "disable anti aliasing"); + general.add_options()("gui-no-aa", "disable anti aliasing (use together with --gui option)"); #endif #ifndef NO_PYTHON general.add_options()("run", po::value<std::vector<std::string>>(), |