From 1e27caaf6d858ce12860c085174f34cc056830d3 Mon Sep 17 00:00:00 2001 From: mpohoreski Date: Mon, 27 Feb 2006 00:41:52 +0000 Subject: [PATCH] .7 Fixed script read hang in GetLinePointers() .3 Fixed BPM to break ON the trigger, not after --- AppleWin/source/Debug.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppleWin/source/Debug.cpp b/AppleWin/source/Debug.cpp index df23dfd9..992e734c 100644 --- a/AppleWin/source/Debug.cpp +++ b/AppleWin/source/Debug.cpp @@ -43,7 +43,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // TODO: COLOR LOAD ["filename"] // See Debugger_Changelong.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,5,0,3); + const int DEBUGGER_VERSION = MAKE_VERSION(2,5,0,7); // Public _________________________________________________________________________________________ @@ -6241,10 +6241,10 @@ void DebugContinueStepping () OutputTraceLine(); lastpc = regs.pc; - bool bBreak = CheckBreakpointsIO(); - InternalSingleStep(); + bool bBreak = CheckBreakpointsIO(); + if (CheckBreakpointsReg()) bBreak = true;