X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCockpit%2Fpanel.cxx;h=ad4465878fbab12d58dad6783aee3b689bb8fa64;hb=c0b4531d04215f76f9cf65afbdaed6b7c0b32634;hp=871ca97f3971d2f0fa9720cb0a754a9d71119eba;hpb=32a17bf442da79747f11eeab5ed7fa0f3b8a511f;p=flightgear.git diff --git a/src/Cockpit/panel.cxx b/src/Cockpit/panel.cxx index 871ca97f3..ad4465878 100644 --- a/src/Cockpit/panel.cxx +++ b/src/Cockpit/panel.cxx @@ -1118,7 +1118,7 @@ FGTextLayer::Chunk::getValue () const break; case DOUBLE_VALUE: double d = _offs + _node->getFloatValue() * _mult; - if (_trunc) d = (d < 0) ? -floorf(-d) : floorf(d); + if (_trunc) d = (d < 0) ? -floor(-d) : floor(d); sprintf(_buf, _fmt.c_str(), d); break; }