]> git.mxchange.org Git - flightgear.git/commitdiff
Bug 941, lower minimum speed for GPS sequencing.
authorJames Turner <jmt@Bishop.local>
Sat, 29 Dec 2012 13:46:29 +0000 (13:46 +0000)
committerJames Turner <jmt@Bishop.local>
Sat, 29 Dec 2012 13:46:29 +0000 (13:46 +0000)
10kts is fine, apparently some people 'fly' very slowly.

src/Instrumentation/gps.cxx

index 5f04de2e62c02c4f52ab2ca82e4dc4fdc4ffefc5..e9d7a2a44279447cd29547cac9716da04ab92d5c 100644 (file)
@@ -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;
     }