Allow compile under Windows Subsystem for Linux (#15606)

This commit is contained in:
Marcio T
2019-10-24 13:57:20 -06:00
committed by Scott Lahteine
parent 82fb046013
commit f6a799c7b3
2 changed files with 9 additions and 1 deletions

View File

@ -279,7 +279,7 @@
#define ATAN2(y, x) atan2f(y, x)
#define POW(x, y) powf(x, y)
#define SQRT(x) sqrtf(x)
#define RSQRT(x) (1 / sqrtf(x))
#define RSQRT(x) (1.0f / sqrtf(x))
#define CEIL(x) ceilf(x)
#define FLOOR(x) floorf(x)
#define LROUND(x) lroundf(x)