Slightly increase remainder resolution.

This commit is contained in:
Steve 2019-04-08 11:33:38 +01:00
parent 43b9e9ff32
commit c453074778
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static void capFrameRate(long *then, float *remainder)
SDL_Delay(wait);
*remainder += 0.667;
*remainder += 0.666667;
*then = SDL_GetTicks();
}