[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.609,2.610

Chris Apers chrilith at users.sourceforge.net
Tue Mar 2 05:30:00 CET 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19846

Modified Files:
	scummvm.cpp 
Log Message:
640x480 games not supported on PalmOS

Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.609
retrieving revision 2.610
diff -u -d -r2.609 -r2.610
--- scummvm.cpp	2 Mar 2004 10:37:51 -0000	2.609
+++ scummvm.cpp	2 Mar 2004 13:09:35 -0000	2.610
@@ -201,6 +201,7 @@
 	{"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 @@
 	// 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 @@
 	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 @@
 	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");
 	}





More information about the Scummvm-git-logs mailing list