aboutsummaryrefslogtreecommitdiff
path: root/script.cpp
diff options
context:
space:
mode:
authorJames Brown2002-02-15 06:42:41 +0000
committerJames Brown2002-02-15 06:42:41 +0000
commit771b8e6089c7a691daed3d619df02b1729bd2c14 (patch)
treeb252d5e8a14ca6698bae2e1b9b961116f4c28767 /script.cpp
parent3eb368b761aa0c521350d2642230308a5ec099e0 (diff)
downloadscummvm-rg350-771b8e6089c7a691daed3d619df02b1729bd2c14.tar.gz
scummvm-rg350-771b8e6089c7a691daed3d619df02b1729bd2c14.tar.bz2
scummvm-rg350-771b8e6089c7a691daed3d619df02b1729bd2c14.zip
Just some debugging stuff I find handy.
svn-id: r3589
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 6bdaa5bd88..a689fa5f6d 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", _opcode);
+ // debug(1, "[%X] %s()", _opcode, _opcodes_lookup[_opcode]);
op = getOpcode(_opcode);
(this->*op)();
}