From 8be81356503f1ce5f756bb2114c1a80103eac3e7 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 23 Mar 2021 22:11:28 +0100 Subject: [PATCH] fixed missing immediate disassembling --- src/debugger/CartDebug.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugger/CartDebug.cxx b/src/debugger/CartDebug.cxx index 2dd91b198..f689041e3 100644 --- a/src/debugger/CartDebug.cxx +++ b/src/debugger/CartDebug.cxx @@ -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)); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -