mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
SWORD25: Extended Mac OSX compilation fix for sqrtf and atan2f
svn-id: r53426
This commit is contained in:
parent
090540504d
commit
a3d3e94a8d
@ -59,6 +59,8 @@
|
||||
#define powf(x,y) ((float)pow(x,y))
|
||||
#define floorf(x) ((float)floor(x))
|
||||
#define fabsf(x) ((float)fabs(x))
|
||||
#define sqrtf(x) ((float)sqrt(x))
|
||||
#define atan2f(x) ((float)atan2(x))
|
||||
#endif
|
||||
|
||||
namespace Lua {
|
||||
|
Loading…
Reference in New Issue
Block a user