aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-02-22 16:31:12 +0000
committerTravis Howell2004-02-22 16:31:12 +0000
commit3fb6d8e63da8e829e452da8cbf82d1085494857a (patch)
tree7cfb4117ffc16278e5f0d0524f6de2530e4195a6 /scumm
parent244d19523fcf7f3e995cd6fc8160b653d752a22f (diff)
downloadscummvm-rg350-3fb6d8e63da8e829e452da8cbf82d1085494857a.tar.gz
scummvm-rg350-3fb6d8e63da8e829e452da8cbf82d1085494857a.tar.bz2
scummvm-rg350-3fb6d8e63da8e829e452da8cbf82d1085494857a.zip
Is used in maniac and zak.
svn-id: r12992
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 839aa00875..a438a786db 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -1573,8 +1573,8 @@ void ScummEngine_v2::o2_getActorWalkBox() {
}
void ScummEngine_v2::o2_dummy() {
- // Opcode 238 is used in Zak but has no purpose
- if (!(_gameId == GID_ZAK && _opcode == 238))
+ // Opcode 238 is used in maniac and zak but has no purpose
+ if (_opcode != 238)
warning("o2_dummy invoked (opcode %d)", _opcode);
}