aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorTravis Howell2009-04-19 13:49:59 +0000
committerTravis Howell2009-04-19 13:49:59 +0000
commitb238d0de008a114cacc7fe1ae0f79df1ff475062 (patch)
tree0984687be4e07d6ca98d8ea4f416c504327c1035 /engines/scumm
parentbedd33ef792cad47b9230ff83a13edc8cc1d13a5 (diff)
downloadscummvm-rg350-b238d0de008a114cacc7fe1ae0f79df1ff475062.tar.gz
scummvm-rg350-b238d0de008a114cacc7fe1ae0f79df1ff475062.tar.bz2
scummvm-rg350-b238d0de008a114cacc7fe1ae0f79df1ff475062.zip
VAR_VIDEMODE value 50 is only used by the Macintosh version of Indiana Jones and the Last Crusade.
svn-id: r40020
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/vars.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/scumm/vars.cpp b/engines/scumm/vars.cpp
index 0cf5d07211..631c88ffa6 100644
--- a/engines/scumm/vars.cpp
+++ b/engines/scumm/vars.cpp
@@ -721,8 +721,10 @@ void ScummEngine::resetScummVars() {
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)