diff options
Diffstat (limited to 'engines/wintermute/math')
-rw-r--r-- | engines/wintermute/math/math_util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/math/math_util.cpp b/engines/wintermute/math/math_util.cpp index 4a308a914e..434e0e016b 100644 --- a/engines/wintermute/math/math_util.cpp +++ b/engines/wintermute/math/math_util.cpp @@ -27,14 +27,14 @@ */
#include "engines/wintermute/math/math_util.h"
-#include <cmath>
+#include <math.h>
namespace Wintermute {
//////////////////////////////////////////////////////////////////////////
float MathUtil::round(float val) {
float result = floor(val);
- if (val - result >= 0.5) {
+ if (val - result >= 0.5f) {
result += 1.0;
}
return result;
|