Browse Source

fix a typo in the scaling

Sven Czarnian 3 years ago
parent
commit
684ca40c1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/types/Inbound.cpp

+ 1 - 1
src/types/Inbound.cpp

@@ -290,7 +290,7 @@ void Inbound::update(EuroScopePlugIn::CRadarTarget& target) {
                 const auto newGS = this->groundSpeed(altitude, this->indicatedAirspeed(altitude), heading);
                 groundSpeed = std::min(groundSpeed, newGS);
 
-                distance = (groundSpeed + oldGS) * 0.5f * 11_s;
+                distance = (groundSpeed + oldGS) * 0.5f * 1_s;
             }
         }