From 21b7261dc933095b7436d9ef4341bb0d2f551b06 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 11 Sep 2022 13:54:20 +1000 Subject: [PATCH] System: Fix turbo getting dropped on renderer switch --- src/core/system.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index e953fa595..3bb244ea7 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -759,6 +759,8 @@ bool System::RecreateGPU(GPURenderer renderer, bool force_recreate_display, bool g_gpu->ResetGraphicsAPIState(); } + // fix up vsync etc + UpdateSpeedLimiterState(); return true; }