소스 검색

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;
             }
         }