display help if gameid is not specified in commandline

This commit is contained in:
Pawel Kolodziejski 2009-05-26 06:53:32 +00:00
parent 97e60dba2c
commit 4feb080cf6

View file

@ -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;
}