aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v5.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-10-01 13:02:35 +0000
committerTravis Howell2005-10-01 13:02:35 +0000
commitaeb09b2ce43976ded9864845641a9a7778323fef (patch)
treee94a370bfbbd8ff11eea397d1b44b4b27b0ed1fb /scumm/script_v5.cpp
parent8b712a4302d664dc761ac4d5b64b68ebba1892a4 (diff)
downloadscummvm-rg350-aeb09b2ce43976ded9864845641a9a7778323fef.tar.gz
scummvm-rg350-aeb09b2ce43976ded9864845641a9a7778323fef.tar.bz2
scummvm-rg350-aeb09b2ce43976ded9864845641a9a7778323fef.zip
Add inventory display for Mac. version of indy3.
svn-id: r18918
Diffstat (limited to 'scumm/script_v5.cpp')
-rw-r--r--scumm/script_v5.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index a33e522d94..cf9a43c2ce 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -2131,6 +2131,24 @@ void ScummEngine_v5::o5_setVarRange() {
setResult(b);
_resultVarNumber++;
} while (--a);
+
+ // Macintosh verison of indy3ega used different interface, so adjust values.
+ if (_gameId == GID_INDY3 && _platform == Common::kPlatformMacintosh) {
+ VAR(68) = 0;
+ VAR(69) = 0;
+ VAR(70) = 168;
+ VAR(71) = 0;
+ VAR(72) = 168;
+ VAR(73) = 0;
+ VAR(74) = 168;
+ VAR(75) = 0;
+ VAR(76) = 176;
+ VAR(77) = 176;
+ VAR(78) = 184;
+ VAR(79) = 184;
+ VAR(80) = 192;
+ VAR(81) = 192;
+ }
}
void ScummEngine_v5::o5_startMusic() {