mirror of https://github.com/stella-emu/stella.git
fixed missing immediate disassembling
This commit is contained in:
parent
fbf2271e73
commit
8be8135650
|
@ -253,7 +253,7 @@ bool CartDebug::disassembleAddr(uInt16 address, bool force)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
bool CartDebug::disassemblePC(bool force)
|
||||
{
|
||||
return (disassembleAddr(myDebugger.cpuDebug().pc()));
|
||||
return (disassembleAddr(myDebugger.cpuDebug().pc(), force));
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue