diff options
author | Travis Howell | 2009-04-19 13:49:59 +0000 |
---|---|---|
committer | Travis Howell | 2009-04-19 13:49:59 +0000 |
commit | b238d0de008a114cacc7fe1ae0f79df1ff475062 (patch) | |
tree | 0984687be4e07d6ca98d8ea4f416c504327c1035 /engines | |
parent | bedd33ef792cad47b9230ff83a13edc8cc1d13a5 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/scumm/vars.cpp | 4 |
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) |