aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/debug.cpp
diff options
context:
space:
mode:
authorHenry Bush2009-02-15 19:45:36 +0000
committerHenry Bush2009-02-15 19:45:36 +0000
commitc137d7578437b8bac9bc0e6f3965f37f0d9af17c (patch)
tree8d1ed48ea08986fd492a7a298058f9168221b98d /engines/groovie/debug.cpp
parenta49d29cf6f7be49895c1c6a846ea93f0be3e0fee (diff)
downloadscummvm-rg350-c137d7578437b8bac9bc0e6f3965f37f0d9af17c.tar.gz
scummvm-rg350-c137d7578437b8bac9bc0e6f3965f37f0d9af17c.tar.bz2
scummvm-rg350-c137d7578437b8bac9bc0e6f3965f37f0d9af17c.zip
T7G: print out the current script pos in decimal too (to match ST's decomp's ;-)
svn-id: r38283
Diffstat (limited to 'engines/groovie/debug.cpp')
-rw-r--r--engines/groovie/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/debug.cpp b/engines/groovie/debug.cpp
index 72a07f4f42..606535a993 100644
--- a/engines/groovie/debug.cpp
+++ b/engines/groovie/debug.cpp
@@ -78,7 +78,7 @@ bool Debugger::cmd_pc(int argc, const char **argv) {
int val = getNumber(argv[1]);
_script->_currentInstruction = val;
}
- DebugPrintf("pc = 0x%04X\n", _script->_currentInstruction);
+ DebugPrintf("pc = 0x%04X (%d)\n", _script->_currentInstruction, _script->_currentInstruction);
return true;
}