mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-06 19:38:14 +00:00
Fixed implicit linkage to ftol2() on Windows
This commit is contained in:
@@ -266,8 +266,11 @@ SDL_trunc(double x)
|
||||
#if defined(HAVE_TRUNC)
|
||||
return trunc(x);
|
||||
#else
|
||||
/* !!! FIXME: there are more formal (correct!) ways to do this. */
|
||||
return (double) ((Sint64) x);
|
||||
if (x >= 0.0f) {
|
||||
return SDL_floor(x);
|
||||
} else {
|
||||
return SDL_ceil(x);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user