aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Apers2004-03-02 13:09:35 +0000
committerChris Apers2004-03-02 13:09:35 +0000
commitb088395e560751c182310ada55757ee8f8c6a760 (patch)
treef9823785e60ada9fdeea48098eb5fe6f611f832f
parentfbd040ac9f7ac3cad18e99d4ffe12831c8d2cd7d (diff)
downloadscummvm-rg350-b088395e560751c182310ada55757ee8f8c6a760.tar.gz
scummvm-rg350-b088395e560751c182310ada55757ee8f8c6a760.tar.bz2
scummvm-rg350-b088395e560751c182310ada55757ee8f8c6a760.zip
640x480 games not supported on PalmOS
svn-id: r13145
-rw-r--r--scumm/scummvm.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 038e0312c5..7a856d6215 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -201,6 +201,7 @@ static const ScummGameSettings scumm_settings[] = {
{"digdemo", "The Dig (Demo)", GID_DIG, 7, MDT_NONE,
GF_NEW_OPCODES | GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEMO, "dig"},
+#ifndef __PALM_OS__
/* Scumm Version 8 */
{"comi", "The Curse of Monkey Island", GID_CMI, 8, MDT_NONE,
GF_NEW_OPCODES | GF_NEW_COSTUMES | GF_NEW_CAMERA | GF_DIGI_IMUSE | GF_DEFAULT_TO_1X_SCALER, 0},
@@ -312,6 +313,7 @@ static const ScummGameSettings scumm_settings[] = {
// GF_NEW_OPCODES | GF_AFTER_HEV7 | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0},
//{"spyozon", "Spyfox 3: Operation Ozone", GID_PJSDEMO, 6, MDT_NONE,
// GF_NEW_OPCODES | GF_AFTER_HEV7 | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0},
+#endif
{NULL, NULL, 0, 0, MDT_NONE, 0, 0}
};
@@ -2979,9 +2981,11 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
case 6:
if (game.features & GF_HUMONGOUS) {
// TODO: probably use another variable with version number
+#ifndef __PALM_OS__
if (game.features & GF_AFTER_HEV7)
engine = new ScummEngine_v7he(detector, syst, game);
else
+#endif
engine = new ScummEngine_v6he(detector, syst, game);
} else {
engine = new ScummEngine_v6(detector, syst, game);
@@ -2990,9 +2994,11 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
case 7:
engine = new ScummEngine_v7(detector, syst, game);
break;
+#ifndef __PALM_OS__
case 8:
engine = new ScummEngine_v8(detector, syst, game);
break;
+#endif
default:
error("Engine_SCUMM_create(): Unknown version of game engine");
}