mirror of
https://github.com/encounter/SDL.git
synced 2025-12-09 05:27:48 +00:00
fixed a typo in SDL_ceilf()
This commit is contained in:
@@ -148,7 +148,7 @@ SDL_ceilf(float x)
|
||||
#if defined(HAVE_CEILF)
|
||||
return ceilf(x);
|
||||
#else
|
||||
return (float)SDL_ceil((float)x);
|
||||
return (float)SDL_ceil((double)x);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user