mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Use SDL_fmodf() instead of libc fmodf()
Always good to use the SDL stdlib where possible.
This commit is contained in:
parent
5faa86baae
commit
d997fae27a
1 changed files with 1 additions and 1 deletions
|
@ -435,7 +435,7 @@ void inline deltaloop()
|
|||
|
||||
while (accumulator >= timesteplimit)
|
||||
{
|
||||
accumulator = fmodf(accumulator, timesteplimit);
|
||||
accumulator = SDL_fmodf(accumulator, timesteplimit);
|
||||
|
||||
fixedloop();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue