From: Tobias Markus Date: Thu, 30 Jan 2014 01:11:15 +0000 (+0100) Subject: Ignore instead of exit when invalid command line options are given X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=sidebyside;h=ceffc485e5d12565489fdd6973070dd3bda0b7f9;p=supertux.git Ignore instead of exit when invalid command line options are given --- diff --git a/src/supertux/main.cpp b/src/supertux/main.cpp index c853809f8..e3002fd95 100644 --- a/src/supertux/main.cpp +++ b/src/supertux/main.cpp @@ -418,7 +418,6 @@ Main::parse_commandline(int argc, char** argv) g_config->start_level = arg; } else { log_warning << "Unknown option '" << arg << "'. Use --help to see a list of options" << std::endl; - return true; } }