From b6c92d5a66f46a475c290f9f8e6f4f9a92f9d62c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 24 Aug 2019 09:17:54 +0200 Subject: [PATCH] Do video driver monitor reset after fastforwarding; helps prevent the building up of big frametime deviations --- retroarch.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/retroarch.c b/retroarch.c index 8b335cb67e..91bee7db1e 100644 --- a/retroarch.c +++ b/retroarch.c @@ -23964,7 +23964,10 @@ static void update_fastforwarding_state(void) else { if (menu_widgets_inited) + { menu_widgets_fast_forward = false; + video_driver_monitor_reset(); + } } #endif }