fixed a typo in SDL_ceilf()

main
Ozkan Sezer 2021-03-14 11:04:28 +03:00
parent 34de3b57a1
commit 1957ffd21a
1 changed files with 1 additions and 1 deletions

View File

@ -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
}