aboutsummaryrefslogtreecommitdiff
path: root/script.cpp
diff options
context:
space:
mode:
authorJames Brown2002-03-11 14:24:48 +0000
committerJames Brown2002-03-11 14:24:48 +0000
commit25846cf8e4e05d4f3724a5d5132db16a55f8869a (patch)
tree9226a982606b4624147046908439d22aeb742627 /script.cpp
parent93069e3e5a14467b8241838c1d6f0363d3872273 (diff)
downloadscummvm-rg350-25846cf8e4e05d4f3724a5d5132db16a55f8869a.tar.gz
scummvm-rg350-25846cf8e4e05d4f3724a5d5132db16a55f8869a.tar.bz2
scummvm-rg350-25846cf8e4e05d4f3724a5d5132db16a55f8869a.zip
Quick Zak crash workarounds.
svn-id: r3731
Diffstat (limited to 'script.cpp')
-rw-r--r--script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/script.cpp b/script.cpp
index 9d5a8b2ef8..c672eecd17 100644
--- a/script.cpp
+++ b/script.cpp
@@ -254,7 +254,7 @@ void Scumm::executeScript() {
_opcode = fetchScriptByte();
_scriptPointerStart = _scriptPointer;
vm.slot[_currentScript].didexec = 1;
- //debug(1, "[%X] %s()", _opcode, _opcodes_lookup[_opcode]);
+ debug(1, "[%X] %s()", _opcode, _opcodes_lookup[_opcode]);
op = getOpcode(_opcode);
(this->*op)();
}