[Scummvm-cvs-logs] SF.net SVN: scummvm:[40020] scummvm/trunk/engines/scumm/vars.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun Apr 19 15:49:59 CEST 2009


Revision: 40020
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40020&view=rev
Author:   Kirben
Date:     2009-04-19 13:49:59 +0000 (Sun, 19 Apr 2009)

Log Message:
-----------
VAR_VIDEMODE value 50 is only used by the Macintosh version of Indiana Jones and the Last Crusade.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/vars.cpp

Modified: scummvm/trunk/engines/scumm/vars.cpp
===================================================================
--- scummvm/trunk/engines/scumm/vars.cpp	2009-04-19 13:08:00 UTC (rev 40019)
+++ scummvm/trunk/engines/scumm/vars.cpp	2009-04-19 13:49:59 UTC (rev 40020)
@@ -721,8 +721,10 @@
 
 		if (_game.platform == Common::kPlatformFMTowns)
 			VAR(VAR_VIDEOMODE) = 42;
-		else if (_game.platform == Common::kPlatformMacintosh)
+		// Value only used by the Macintosh version of Indiana Jones and the Last Crusade
+		else if (_game.platform == Common::kPlatformMacintosh && _game.version == 3)
 			VAR(VAR_VIDEOMODE) = 50;
+		// Value only used by the Amiga of Monkey Island 2
 		else if (_game.platform == Common::kPlatformAmiga)
 			VAR(VAR_VIDEOMODE) = 82;
 		else if (_renderMode == Common::kRenderCGA)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list