From: James Turner Date: Sat, 29 Dec 2012 13:46:29 +0000 (+0000) Subject: Bug 941, lower minimum speed for GPS sequencing. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=34e8181cc9db413b76b86e8436d3e9d413520528;p=flightgear.git Bug 941, lower minimum speed for GPS sequencing. 10kts is fine, apparently some people 'fly' very slowly. --- diff --git a/src/Instrumentation/gps.cxx b/src/Instrumentation/gps.cxx index 5f04de2e6..e9d7a2a44 100644 --- a/src/Instrumentation/gps.cxx +++ b/src/Instrumentation/gps.cxx @@ -767,7 +767,7 @@ void GPS::updateTurn() bool printProgress = false; if (_computeTurnData) { - if (_last_speed_kts < 60) { + if (_last_speed_kts < 10) { // need valid leg course and sensible ground speed to compute the turn return; }