]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/panel.cxx
Fix my mailing address by replacing it with my web page.
[flightgear.git] / src / Cockpit / panel.cxx
index 53a9bde58a4c546387d384958e1bb021e8d3c0d7..4134c196cfa91f498c134949798c357a7ac19d83 100644 (file)
 #include <stdio.h>     // sprintf
 #include <string.h>
 
+#include <simgear/compiler.h>
+
+#include SG_GLU_H
+
 #include <plib/ssg.h>
 #include <plib/fnt.h>
 
 // my hardware/driver requires many more.
 #define POFF_UNITS 4
 
-#if defined( __FreeBSD__ ) || defined( _MSC_VER )      // no truncf on FreeBSD nor in MSVC
-inline float truncf (float d) {
-    return (d < 0) ? -floorf(-d) : floorf(d);
-}
-#endif
-
-\f
 ////////////////////////////////////////////////////////////////////////
 // Local functions.
 ////////////////////////////////////////////////////////////////////////
@@ -1125,7 +1122,7 @@ FGTextLayer::Chunk::getValue () const
       break;
     case DOUBLE_VALUE:
       double d = _offs + _node->getFloatValue() * _mult;
-      if (_trunc)  d = truncf(d);
+      if (_trunc)  d = (d < 0) ? -floor(-d) : floor(d);
       sprintf(_buf, _fmt.c_str(), d);
       break;
     }