From 8eb17d61a367879931e274f381e113e24928e594 Mon Sep 17 00:00:00 2001 From: Jean-Paul Mari Date: Fri, 16 Apr 2021 18:02:47 -0400 Subject: [PATCH] Improve the DWARF source line number reporting --- docs/vj_HistoryNotes.txt | 1 + src/jaguar.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/vj_HistoryNotes.txt b/docs/vj_HistoryNotes.txt index 4a2a32e..d6d7654 100644 --- a/docs/vj_HistoryNotes.txt +++ b/docs/vj_HistoryNotes.txt @@ -35,6 +35,7 @@ Release 5 (TBA) 22) Breakpoint list window is now refreshed after a new breakpoint is set 23) Handle number of M68K cycles used when tracing in debugger mode -- The cycles are displayed in the emulator status window +24) Improve the DWARF source line number reporting Release 4a (15th August 2019) ----------------------------- diff --git a/src/jaguar.cpp b/src/jaguar.cpp index f517cc4..4123d4b 100644 --- a/src/jaguar.cpp +++ b/src/jaguar.cpp @@ -2681,7 +2681,7 @@ int JaguarStepOver(int depth) break; } } - while (!exit); + while (!exit && !M68KDebugHaltStatus()); #ifdef _MSC_VER #pragma message("Warning: !!! Need to verify the Jaguar Step Over function !!!") -- 2.20.1