diff options
Diffstat (limited to 'script_v1.cpp')
-rw-r--r-- | script_v1.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script_v1.cpp b/script_v1.cpp index 934e922636..e27783b667 100644 --- a/script_v1.cpp +++ b/script_v1.cpp @@ -1892,6 +1892,7 @@ void Scumm::o5_wait() { break; return; case 2: /* wait for message */ + if (_gameId == GID_ZAK256) return; // FIXME: ZAK256 if (_vars[VAR_HAVE_MSG]) break; return; @@ -2098,7 +2099,7 @@ void Scumm::o5_pickupObjectOld() { int obj; - obj = getVarOrDirectByte(0x80); + obj = getVarOrDirectWord(0x80); if(getObjectIndex(obj) != 1) return; |