fix a typo in the scaling

This commit is contained in:
Sven Czarnian
2021-11-25 22:51:25 +01:00
父節點 eb521fca8b
當前提交 684ca40c1c

查看文件

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