From 684ca40c1cb2b6788a2b4bd7c0ed464847797611 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 25 Nov 2021 22:51:25 +0100 Subject: [PATCH] fix a typo in the scaling --- src/types/Inbound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/Inbound.cpp b/src/types/Inbound.cpp index b16e11c..c040c15 100644 --- a/src/types/Inbound.cpp +++ b/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; } }