mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 07:23:05 +00:00
T7G: print out the current script pos in decimal too (to match ST's decomp's ;-)
svn-id: r38283
This commit is contained in:
parent
a49d29cf6f
commit
c137d75784
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user