From c137d7578437b8bac9bc0e6f3965f37f0d9af17c Mon Sep 17 00:00:00 2001 From: Henry Bush Date: Sun, 15 Feb 2009 19:45:36 +0000 Subject: T7G: print out the current script pos in decimal too (to match ST's decomp's ;-) svn-id: r38283 --- engines/groovie/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/groovie/debug.cpp') 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; } -- cgit v1.2.3