mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-24 19:45:07 +00:00
Fix typo, which made our "floorf" macro use "floorf" instead of "floor" on systems without "floorf".
svn-id: r42904
This commit is contained in:
parent
d1cce09149
commit
e779747ca4
@ -36,7 +36,7 @@
|
||||
// Hence we re-define them here. The only potential drawback is that it
|
||||
// might be a little bit slower this way.
|
||||
#define powf(x,y) ((float)pow(x,y))
|
||||
#define floorf(x) ((float)floorf(x))
|
||||
#define floorf(x) ((float)floor(x))
|
||||
#define fabsf(x) ((float)fabs(x))
|
||||
#endif
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
// Hence we re-define them here. The only potential drawback is that it
|
||||
// might be a little bit slower this way.
|
||||
#define powf(x,y) ((float)pow(x,y))
|
||||
#define floorf(x) ((float)floorf(x))
|
||||
#define floorf(x) ((float)floor(x))
|
||||
#define fabsf(x) ((float)fabs(x))
|
||||
#endif
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
// Hence we re-define them here. The only potential drawback is that it
|
||||
// might be a little bit slower this way.
|
||||
#define powf(x,y) ((float)pow(x,y))
|
||||
#define floorf(x) ((float)floorf(x))
|
||||
#define floorf(x) ((float)floor(x))
|
||||
#define fabsf(x) ((float)fabs(x))
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user