Skip to content

Commit

Permalink
Revert "LIBRETRO: set _interval to 10ms"
Browse files Browse the repository at this point in the history
This reverts commit 69e2595.
  • Loading branch information
spleen1981 committed Jun 18, 2023
1 parent 69e2595 commit b045872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/platform/libretro/src/libretro-timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
LibretroTimerManager::LibretroTimerManager(uint32 refresh_rate) {
if (! refresh_rate > 0)
refresh_rate = REFRESH_RATE;
_interval = 10; //1000 / refresh_rate;
_interval = 1000 / refresh_rate;
_nextSwitchTime = _interval + g_system->getMillis();
}

Expand Down

0 comments on commit b045872

Please sign in to comment.