[Scummvm-cvs-logs] CVS: scummvm/scumm scummvm.cpp,2.432,2.433

Travis Howell kirben at users.sourceforge.net
Sun Oct 12 06:45:08 CEST 2003


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

Modified Files:
	scummvm.cpp 
Log Message:

mac loom uses different var.


Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.432
retrieving revision 2.433
diff -u -d -r2.432 -r2.433
--- scummvm.cpp	10 Oct 2003 13:55:07 -0000	2.432
+++ scummvm.cpp	12 Oct 2003 13:44:37 -0000	2.433
@@ -1370,7 +1370,11 @@
 		// HACK as in game save stuff isn't supported currently
 		if (_gameId == GID_LOOM || _gameId == GID_LOOM256) {
 			int args = 2;
-			uint value = (_gameId == GID_LOOM256) ? 150 : 100;
+			uint value;
+			if (_features & GF_MACINTOSH)
+				value = 105;
+			else
+ 				value = (_gameId == GID_LOOM256) ? 150 : 100;
 			byte restoreScript = (_features & GF_FMTOWNS) ? 17 : 18;
 			// if verbs should be shown restore them
 			if (VAR(value) == 2)





More information about the Scummvm-git-logs mailing list