Fix typo, which made our "floorf" macro use "floorf" instead of "floor" on systems without "floorf".

svn-id: r42904
This commit is contained in:
Johannes Schickel 2009-07-29 20:03:46 +00:00
parent d1cce09149
commit e779747ca4
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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