mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-16 16:09:42 +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)
|
while (accumulator >= timesteplimit)
|
||||||
{
|
{
|
||||||
accumulator = fmodf(accumulator, timesteplimit);
|
accumulator = SDL_fmodf(accumulator, timesteplimit);
|
||||||
|
|
||||||
fixedloop();
|
fixedloop();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue