From e4ef9cd4f522a13b46f401bf278d3f8f77679f3d Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Wed, 17 Feb 2021 21:08:55 -0800 Subject: [PATCH] libretro: Always use CONTINUOUS flipping. --- libretro/libretro.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libretro/libretro.cpp b/libretro/libretro.cpp index b8b838f7b381..bb08d3b61944 100644 --- a/libretro/libretro.cpp +++ b/libretro/libretro.cpp @@ -354,7 +354,8 @@ void retro_init(void) #endif g_Config.bEnableLogging = true; - g_Config.iUnthrottleMode = (int)UnthrottleMode::SKIP_FLIP; + // libretro does its own timing, so this should stay CONTINUOUS. + g_Config.iUnthrottleMode = (int)UnthrottleMode::CONTINUOUS; g_Config.bMemStickInserted = true; g_Config.iGlobalVolume = VOLUME_MAX - 1; g_Config.iAltSpeedVolume = -1;