Skip to content

Commit

Permalink
libretro: Always use CONTINUOUS flipping.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Feb 18, 2021
1 parent 644d58e commit e4ef9cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libretro/libretro.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit e4ef9cd

Please sign in to comment.