]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/panel.cxx
Yank out all the glut dependencies and concentrate them in a (easily
[flightgear.git] / src / Cockpit / panel.cxx
index 7a26ead05eae4c35fea33456075bf352963338a6..ad4465878fbab12d58dad6783aee3b689bb8fa64 100644 (file)
 // my hardware/driver requires many more.
 #define POFF_UNITS 4
 
-#ifdef __FreeBSD__     // no truncf on FreeBSD
-inline float truncf (float d) {
-    return (d < 0) ? -floorf(-d) : floorf(d);
-}
-#endif
-
-\f
 ////////////////////////////////////////////////////////////////////////
 // Local functions.
 ////////////////////////////////////////////////////////////////////////
@@ -1125,7 +1118,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;
     }