aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth/mt32/synth.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-07-29 20:03:46 +0000
committerJohannes Schickel2009-07-29 20:03:46 +0000
commite779747ca4e86e52ab22b11591fcd16b79902407 (patch)
treeffc1d7d2f34610c5641ce296792380aecb1fdcea /sound/softsynth/mt32/synth.cpp
parentd1cce09149d72c3ad85995e9f4a9d90ff4a33400 (diff)
downloadscummvm-rg350-e779747ca4e86e52ab22b11591fcd16b79902407.tar.gz
scummvm-rg350-e779747ca4e86e52ab22b11591fcd16b79902407.tar.bz2
scummvm-rg350-e779747ca4e86e52ab22b11591fcd16b79902407.zip
Fix typo, which made our "floorf" macro use "floorf" instead of "floor" on systems without "floorf".
svn-id: r42904
Diffstat (limited to 'sound/softsynth/mt32/synth.cpp')
-rw-r--r--sound/softsynth/mt32/synth.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/softsynth/mt32/synth.cpp b/sound/softsynth/mt32/synth.cpp
index 547b2bb9b3..c8b7abdf67 100644
--- a/sound/softsynth/mt32/synth.cpp
+++ b/sound/softsynth/mt32/synth.cpp
@@ -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