diff options
author | Paweł Kołodziejski | 2003-04-21 15:28:18 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-04-21 15:28:18 +0000 |
commit | 1a6d58f2fc3052745ca6e74623243fe70954e900 (patch) | |
tree | a2c4506fdd45bb174285245c1d14cdf31818f977 /scumm | |
parent | 72b3638138a43387cf29500ad1a9a7c74f148034 (diff) | |
download | scummvm-rg350-1a6d58f2fc3052745ca6e74623243fe70954e900.tar.gz scummvm-rg350-1a6d58f2fc3052745ca6e74623243fe70954e900.tar.bz2 scummvm-rg350-1a6d58f2fc3052745ca6e74623243fe70954e900.zip |
ops
svn-id: r7067
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index c4300d8c62..475ee18dda 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -871,7 +871,7 @@ void Scumm_v2::o2_ifClassOfIs() { int act = getVarOrDirectWord(0x80); int clsop = getVarOrDirectByte(0x40); - if (getObjectIndex(act) != 0xFF) { + if (getObjectIndex(act) == -1) { o5_jumpRelative(); return; } |