[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.265,2.266

Travis Howell kirben at users.sourceforge.net
Sat Jul 5 21:35:11 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv16283/scumm

Modified Files:
	scummvm.cpp 
Log Message:

Add change from Hibernatus


Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.265
retrieving revision 2.266
diff -u -d -r2.265 -r2.266
--- scummvm.cpp	5 Jul 2003 09:52:22 -0000	2.265
+++ scummvm.cpp	6 Jul 2003 04:34:47 -0000	2.266
@@ -961,8 +961,8 @@
 		VAR(VAR_59) = 3;
 	}
 	
-	if (_gameId == GID_LOOM) {
-		// This is the for the Mac version of Loom. TODO: add code to properly
+	if (_gameId == GID_LOOM || _gameId == GID_INDY3) {
+		// This is the for the Mac version of Indy3/Loom. TODO: add code to properly
 		// distinguish the Mac version from the PC (and other) versions.
 		VAR(39) = 320;
 	}
@@ -1041,8 +1041,8 @@
 		VAR(VAR_VIRT_MOUSE_Y) = _virtualMouse.y;
 		VAR(VAR_MOUSE_X) = _mouse.x;
 		VAR(VAR_MOUSE_Y) = _mouse.y;
-		if (_gameId != GID_LOOM) {
-			// This is the for the Mac version of Loom. TODO: add code to properly
+		if (_gameId != GID_LOOM && _gameId != GID_INDY3) {
+			// This is the for the Mac version of Indy3/Loom. TODO: add code to properly
 			// distinguish the Mac version from the PC (and other) versions.
 			VAR(VAR_DEBUGMODE) = _debugMode;
 		}
@@ -2510,8 +2510,8 @@
 		if (_version < 7)
 			VAR(VAR_VERSION) = 21;
 	
-		if (_gameId != GID_LOOM) {
-			// This is the for the Mac version of Loom. TODO: add code to properly
+		if (_gameId != GID_LOOM && _gameId != GID_INDY3) {
+			// This is the for the Mac version of Indy3/Loom. TODO: add code to properly
 			// distinguish the Mac version from the PC (and other) versions.
 			VAR(VAR_DEBUGMODE) = _debugMode;
 		}





More information about the Scummvm-git-logs mailing list