diff --git a/src/commandline_options.cpp b/src/commandline_options.cpp index 4790eb5d180..6150f59cc3e 100644 --- a/src/commandline_options.cpp +++ b/src/commandline_options.cpp @@ -178,7 +178,11 @@ commandline_options::commandline_options (const std::vector& args) " Implies --wconsole." #endif // _WIN32 ) - ("report,R", "initializes game directories, prints build information suitable for use in bug reports, and exits.") + ("report,R", "initializes game directories, prints build information suitable for use in bug reports, and exits." +#ifdef _WIN32 + " Implies --wconsole." +#endif // _WIN32 + ) ("rng-seed", po::value(), "seeds the random number generator with number . Example: --rng-seed 0") ("screenshot", po::value()->multitoken(), "takes two arguments: . Saves a screenshot of to without initializing a screen. Editor must be compiled in for this to work." #ifdef _WIN32 diff --git a/src/wesnoth.cpp b/src/wesnoth.cpp index 2167a373cbb..ae4e221e09d 100644 --- a/src/wesnoth.cpp +++ b/src/wesnoth.cpp @@ -1035,6 +1035,8 @@ int main(int argc, char** argv) args[k] == "--logdomains" || args[k] == "--path" || args[k] == "--render-image" || + args[k] == "--report" || + args[k] == "-R" || args[k] == "--screenshot" || args[k] == "--data-path" || args[k] == "--userdata-path" ||