aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorMax Horn2010-07-17 18:41:38 +0000
committerMax Horn2010-07-17 18:41:38 +0000
commit0b48a71c9955b39117e2eb35b3e398f5c95c008a (patch)
treed3430fc6d2470955a74e53e6fb25256e069f6c9e /base
parent1d4c82885ddcc0442671c863eef643aef2dc7dda (diff)
downloadscummvm-rg350-0b48a71c9955b39117e2eb35b3e398f5c95c008a.tar.gz
scummvm-rg350-0b48a71c9955b39117e2eb35b3e398f5c95c008a.tar.bz2
scummvm-rg350-0b48a71c9955b39117e2eb35b3e398f5c95c008a.zip
Remove PalmOS port
svn-id: r50964
Diffstat (limited to 'base')
-rw-r--r--base/commandLine.cpp4
-rw-r--r--base/plugins.cpp7
2 files changed, 2 insertions, 9 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index e795b82d0a..2f4e78fd80 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -49,7 +49,7 @@ static const char USAGE_STRING[] =
;
// DONT FIXME: DO NOT ORDER ALPHABETICALLY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :)
-#if defined(PALMOS_MODE) || defined(__SYMBIAN32__) || defined(__GP32__) || defined(ANDROID)
+#if defined(__SYMBIAN32__) || defined(__GP32__) || defined(ANDROID)
static const char HELP_STRING[] = "NoUsageString"; // save more data segment space
#else
static const char HELP_STRING[] =
@@ -944,7 +944,7 @@ Common::Error processSettings(Common::String &command, Common::StringMap &settin
// environment variable. This is weaker than a --savepath on the
// command line, but overrides the default savepath, hence it is
// handled here, just before the command line gets parsed.
-#if !defined(MACOS_CARBON) && !defined(_WIN32_WCE) && !defined(PALMOS_MODE) && !defined(__GP32__) && !defined(ANDROID)
+#if !defined(_WIN32_WCE) && !defined(__GP32__) && !defined(ANDROID)
if (!settings.contains("savepath")) {
const char *dir = getenv("SCUMMVM_SAVEPATH");
if (dir && *dir && strlen(dir) < MAXPATHLEN) {
diff --git a/base/plugins.cpp b/base/plugins.cpp
index a6acd7e449..29383f1009 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -191,13 +191,6 @@ public:
LINK_PLUGIN(COREAUDIO)
LINK_PLUGIN(COREMIDI)
#endif
- #if defined(PALMOS_MODE)
- # if defined(COMPILE_CLIE)
- LINK_PLUGIN(YPA1)
- # elif defined(COMPILE_ZODIAC) && (!defined(ENABLE_SCUMM) || !defined(PALMOS_ARM))
- LINK_PLUGIN(ZODIAC)
- # endif
- #endif
#ifdef USE_FLUIDSYNTH
LINK_PLUGIN(FLUIDSYNTH)
#endif