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:
nakeee 2009-08-13 12:58:53 +00:00
parent 85947ce10b
commit c0bb42ae43

View File

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