Browse Source

Merge commit '1957ffd21ab5a3be6f347def510fcb8f985d3b8b' into main

Sam Lantinga 4 years ago
parent
commit
4a39d89611
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/stdlib/SDL_stdlib.c

+ 1 - 1
src/stdlib/SDL_stdlib.c

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