fix a bug in windows framerate throttling which made frameskip auto unable to skip frames.

This commit is contained in:
zeromus 2009-01-26 07:53:42 +00:00
parent 1d71a7d4b7
commit 990c2a062e
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ waiter:
if( (ttime-ltime) >= (tfreq/desiredfps) ) // Oops, we're behind!
{
behind = true;
return(1);
return 0;
}
}
return(0);