From cadf69ac32155303b2a885ab0abd1026cf54c1df Mon Sep 17 00:00:00 2001 From: ripsaw8080 Date: Thu, 8 Sep 2016 15:37:59 +0000 Subject: [PATCH] Fix debugger "running" status message when resuming emulation with F5. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3995 --- src/debug/debug.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/debug/debug.cpp b/src/debug/debug.cpp index 20c39429..4dabbfcc 100644 --- a/src/debug/debug.cpp +++ b/src/debug/debug.cpp @@ -1700,6 +1700,7 @@ Bit32u DEBUG_CheckKeys(void) { break; case KEY_F(5): // Run Program debugging=false; + DrawCode(); // update code window to show "running" status CBreakpoint::ActivateBreakpointsExceptAt(SegPhys(cs)+reg_eip); skipFirstInstruction = true; // for heavy debugger