diff options
author | Max Horn | 2003-05-04 13:50:28 +0000 |
---|---|---|
committer | Max Horn | 2003-05-04 13:50:28 +0000 |
commit | 5c3046ae986d7eca890f43276b262c2c8da2f706 (patch) | |
tree | cb04af74f1ab3ed2664e2f0e2ab5c7289972c627 | |
parent | 4ba32812aac31a357bcc231bc4e1ee58149321ad (diff) | |
download | scummvm-rg350-5c3046ae986d7eca890f43276b262c2c8da2f706.tar.gz scummvm-rg350-5c3046ae986d7eca890f43276b262c2c8da2f706.tar.bz2 scummvm-rg350-5c3046ae986d7eca890f43276b262c2c8da2f706.zip |
erik's fix for the airplane bug in Indy3
svn-id: r7318
-rw-r--r-- | scumm/script_v5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 7779abf521..899c4f4a1f 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1968,7 +1968,7 @@ void Scumm_v5::o5_setVarRange() { a = fetchScriptByte(); do { if (_opcode & 0x80) - b = fetchScriptWord(); + b = fetchScriptWordSigned(); else b = fetchScriptByte(); |