Skip to content

Commit

Permalink
Merge commit '1957ffd21ab5a3be6f347def510fcb8f985d3b8b' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 15, 2021
2 parents 3313c67 + 1957ffd commit 4a39d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib/SDL_stdlib.c
Expand Up @@ -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
}

Expand Down

0 comments on commit 4a39d89

Please sign in to comment.