aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/debug.cpp
diff options
context:
space:
mode:
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;
}