libretro: Always use CONTINUOUS flipping.

This commit is contained in:
Unknown W. Brackets 2021-02-17 21:08:55 -08:00
parent 644d58e630
commit e4ef9cd4f5

View file

@ -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;