瀏覽代碼

fix a typo in the scaling

Sven Czarnian 3 年之前
父節點
當前提交
684ca40c1c
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
             }
         }