T7G: print out the current script pos in decimal too (to match ST's decomp's ;-)

svn-id: r38283
This commit is contained in:
Henry Bush 2009-02-15 19:45:36 +00:00
parent a49d29cf6f
commit c137d75784

View File

@ -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;
}