diff --git a/base/commandLine.cpp b/base/commandLine.cpp index ac679f62030..3846fe77acd 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -466,8 +466,15 @@ bool processSettings(Common::String &command, Common::StringMap &settings) { } else { #ifndef DISABLE_COMMAND_LINE usage("Unrecognized game target '%s'", command.c_str()); +#else + return false; #endif // DISABLE_COMMAND_LINE } + } else { +#ifndef DISABLE_COMMAND_LINE + printf(HELP_STRING, s_appName); +#endif // DISABLE_COMMAND_LINE + return false; }