mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Use SDL_fmodf() instead of libc fmodf()
Always good to use the SDL stdlib where possible.
This commit is contained in:
@@ -435,7 +435,7 @@ void inline deltaloop()
|
||||
|
||||
while (accumulator >= timesteplimit)
|
||||
{
|
||||
accumulator = fmodf(accumulator, timesteplimit);
|
||||
accumulator = SDL_fmodf(accumulator, timesteplimit);
|
||||
|
||||
fixedloop();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user