diff options
author | James Brown | 2002-05-14 19:49:22 +0000 |
---|---|---|
committer | James Brown | 2002-05-14 19:49:22 +0000 |
commit | 65f373535ee32644dc332735e9c2f3cf110a0b72 (patch) | |
tree | 9c2d7023bd4b71c5771f311c245cf9c6e7ecea65 | |
parent | aad1bf41048e30f016cc224cf9b8b5916f438198 (diff) | |
download | scummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.tar.gz scummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.tar.bz2 scummvm-rg350-65f373535ee32644dc332735e9c2f3cf110a0b72.zip |
Make if(cls) error a little more useful
svn-id: r4322
-rw-r--r-- | script_v1.cpp | 2 |
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; |