From fc36e3a1edf24867187adf5f4011d5605788124d Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 4 Nov 2023 15:58:58 +0200 Subject: [PATCH] Do not activate temporary frame skip in warp mode if overscan is ultra extreme. --- inputdevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inputdevice.cpp b/inputdevice.cpp index 8447f09c..2cbcce8f 100644 --- a/inputdevice.cpp +++ b/inputdevice.cpp @@ -9775,7 +9775,7 @@ void warpmode(int mode) currprefs.turbo_emulation = 1; } if (currprefs.turbo_emulation) { - if (!currprefs.cpu_memory_cycle_exact && !currprefs.blitter_cycle_exact) + if (!currprefs.cpu_memory_cycle_exact && !currprefs.blitter_cycle_exact && currprefs.gfx_overscanmode < OVERSCANMODE_ULTRA) changed_prefs.gfx_framerate = currprefs.gfx_framerate = 10; pause_sound (); } else { -- 2.47.3