aboutsummaryrefslogtreecommitdiff
path: root/script.cpp
diff options
context:
space:
mode:
authorVincent Hamm2002-04-19 18:05:26 +0000
committerVincent Hamm2002-04-19 18:05:26 +0000
commited6b863e7cc2830432d14c84d8721ba90149cf31 (patch)
tree2667945f5fcc8a957d4da0665d05b03c7e668f6c /script.cpp
parentf5a8c89eb3ba6cc579bf8654844ac8836ceaaa46 (diff)
downloadscummvm-rg350-ed6b863e7cc2830432d14c84d8721ba90149cf31.tar.gz
scummvm-rg350-ed6b863e7cc2830432d14c84d8721ba90149cf31.tar.bz2
scummvm-rg350-ed6b863e7cc2830432d14c84d8721ba90149cf31.zip
Fixed a roomOps that was creating a lots of bugs in indy and Zak
svn-id: r4016
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 069d8ccb40..cc0e27b038 100644
--- a/script.cpp
+++ b/script.cpp
@@ -272,7 +272,7 @@ void Scumm::executeScript()
_opcode = fetchScriptByte();
_scriptPointerStart = _scriptPointer;
vm.slot[_currentScript].didexec = 1;
- //debug(1, "Script %d: [%X] %s()", vm.slot[_currentScript].number, _opcode, _opcodes_lookup[_opcode]);
+ debug(1, "Script %d: [%X] %s()", vm.slot[_currentScript].number, _opcode, _opcodes_lookup[_opcode]);
op = getOpcode(_opcode);
(this->*op) ();
}