display help if gameid is not specified in commandline
This commit is contained in:
parent
97e60dba2c
commit
4feb080cf6
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue