diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/commandLine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp index fd2284da7a..0ca67e36a2 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -639,7 +639,11 @@ bool processSettings(Common::String &command, Common::StringMap &settings) { printf("Features compiled in: %s\n", gScummVMFeatures); return false; } else if (command == "help") { +#if !(defined(PALMOS_ARM) || defined(PALMOS_DEBUG) || defined(__GP32__)) printf(HELP_STRING, s_appName.c_str()); +#else + printf(HELP_STRING, s_appName); +#endif return false; } #ifdef DETECTOR_TESTING_HACK |