aboutsummaryrefslogtreecommitdiff
path: root/script_v1.cpp
diff options
context:
space:
mode:
authorJames Brown2002-05-14 19:49:22 +0000
committerJames Brown2002-05-14 19:49:22 +0000
commit65f373535ee32644dc332735e9c2f3cf110a0b72 (patch)
tree9c2d7023bd4b71c5771f311c245cf9c6e7ecea65 /script_v1.cpp
parentaad1bf41048e30f016cc224cf9b8b5916f438198 (diff)
downloadscummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.tar.gz
scummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.tar.bz2
scummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.zip
Make if(cls) error a little more useful
svn-id: r4322
Diffstat (limited to 'script_v1.cpp')
-rw-r--r--script_v1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/script_v1.cpp b/script_v1.cpp
index ceb35f3e6a..db393f34fe 100644
--- a/script_v1.cpp
+++ b/script_v1.cpp
@@ -1455,7 +1455,7 @@ void Scumm::o5_ifClassOfIs()
if (cls)
b = getClass(act, cls);
else
- error("FIXME! Ender forgot why he added this.");
+ error("FIXME! Ender forgot why he added this. Please report this as a bug code %d", cls);
if (cls & 0x80 && !b || !(cls & 0x80) && b)
cond = false;