diff options
author | Won Star | 2006-05-23 14:19:38 +0000 |
---|---|---|
committer | Won Star | 2006-05-23 14:19:38 +0000 |
commit | 7eede3c510ca074697ed48d9a43ce910c3cf0155 (patch) | |
tree | d94b4d3a34b984cce65bfd09167157d662ea840f /base | |
parent | 622c8b57e77cfdaedd7ce6eba962e65be4ea70ca (diff) | |
download | scummvm-rg350-7eede3c510ca074697ed48d9a43ce910c3cf0155.tar.gz scummvm-rg350-7eede3c510ca074697ed48d9a43ce910c3cf0155.tar.bz2 scummvm-rg350-7eede3c510ca074697ed48d9a43ce910c3cf0155.zip |
Compile fix for GP32 and PalmOS. GP32 port still doesn't work since when GUI code changed...
svn-id: r22583
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 |