[Scummvm-cvs-logs] CVS: scummvm/backends/PalmOS/Src scumm_globals.cpp,1.2,1.3

Chris Apers chrilith at users.sourceforge.net
Fri Nov 28 01:33:02 CET 2003


Update of /cvsroot/scummvm/scummvm/backends/PalmOS/Src
In directory sc8-pr-cvs1:/tmp/cvs-serv3085

Modified Files:
	scumm_globals.cpp 
Log Message:
Added Simon data

Index: scumm_globals.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/PalmOS/Src/scumm_globals.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- scumm_globals.cpp	3 Nov 2003 16:09:12 -0000	1.2
+++ scumm_globals.cpp	28 Nov 2003 09:32:02 -0000	1.3
@@ -42,9 +42,15 @@
 		CALL_INIT(PlayerV2)
 	}
 #endif
+#ifndef DISABLE_SIMON
+	if (gVars->globals[GBVARS_SIMON]) {
+		CALL_INIT(Simon_Simon)
+		CALL_INIT(Simon_Charset)
+	}
+#endif
 #ifndef DISABLE_QUEEN
 	if (gVars->globals[GBVARS_QUEEN]) {
-		CALL_INIT(Restables)
+		CALL_INIT(Queen_Restables)
 	}
 #endif
 }
@@ -64,9 +70,15 @@
 		CALL_RELEASE(PlayerV2)
 	}
 #endif
+#ifndef DISABLE_SIMON
+	if (gVars->globals[GBVARS_SIMON]) {
+		CALL_RELEASE(Simon_Simon)
+		CALL_RELEASE(Simon_Charset)
+	}
+#endif
 #ifndef DISABLE_QUEEN
 	if (gVars->globals[GBVARS_QUEEN]) {
-		CALL_RELEASE(Restables)
+		CALL_RELEASE(Queen_Restables)
 	}
 #endif
 }





More information about the Scummvm-git-logs mailing list