]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/altimeter.cxx
Merge branch 'maint2' into next
[flightgear.git] / src / Instrumentation / altimeter.cxx
index f5d6229d5e7a942c6b8a41d4e6d24fa4afc34da6..8e9fbb1c95897cc72fde13ef4f5e2d9cf80f9796 100644 (file)
 //      </altimeter>
 // Note non-default name, quantum, and tau values.
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include <simgear/math/interpolater.hxx>
 #include <simgear/math/SGMath.hxx>
 
@@ -67,7 +71,7 @@ Altimeter::update (double dt)
         _mode_c_node->setDoubleValue(100 * SGMiscd::round(raw_PA/100));
         _kollsman = fgGetLowPass(_kollsman, _altimeter.kollsman_ft(setting), trat);
         if (_quantum)
-            press_alt = _quantum*round(raw_PA/_quantum);
+            press_alt = _quantum * SGMiscd::round(raw_PA/_quantum);
         else
             press_alt = raw_PA;
         _press_alt_node->setDoubleValue(press_alt);