mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Frameskip: Small fix from r3972
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3977 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -603,7 +603,7 @@ bool report_slow(int skipped)
|
||||
|
||||
bool fps_slow;
|
||||
|
||||
if (Timer.GetTimeDifference() < wait_frametime * (frames + skipped - 1))
|
||||
if (Timer.GetTimeDifference() < wait_frametime * (frames + skipped))
|
||||
fps_slow=false;
|
||||
else
|
||||
fps_slow=true;
|
||||
|
Reference in New Issue
Block a user