From 43be99c92898bd7a41a8ecfdd4ba53cc1f21e830 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Fri, 13 Jun 2025 17:53:46 +0300 Subject: [PATCH] Don't show zero line count OSD when paused. --- od-win32/win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/od-win32/win32.cpp b/od-win32/win32.cpp index af9e2136..934ac69b 100644 --- a/od-win32/win32.cpp +++ b/od-win32/win32.cpp @@ -3358,7 +3358,7 @@ bool handle_events (void) setpaused (pause_emulation); was_paused = pause_emulation; mon->manual_painting_needed++; - gui_fps (0, 0, 0, 0, 0); + gui_fps (0, gui_data.lines, gui_data.lace, 0, 0); gui_led (LED_SND, 0, -1); // we got just paused, report it to caller. return 1; -- 2.47.3