From 1673fdf6c52a293d1a3d6324b825875a1c29c109 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 3 Nov 2025 19:07:15 +0200 Subject: [PATCH] Fix stuck fps counter when any debugger breakpoint is active --- debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug.cpp b/debug.cpp index 80796f32..b511464b 100644 --- a/debug.cpp +++ b/debug.cpp @@ -7656,7 +7656,6 @@ void debug (void) if (savestate_state || quit_program) return; - bogusframe = 1; disasm_init(); addhistory (); @@ -7891,6 +7890,7 @@ void debug (void) last_vpos1 = vpos; last_hpos1 = current_hpos(); last_frame = timeframes; + bogusframe = 1; } const TCHAR *debuginfo (int mode) -- 2.47.3