]> git.mxchange.org Git - flightgear.git/commitdiff
Throttle runs all throttles simultaneously by default.
authorcurt <curt>
Mon, 3 Dec 2001 22:17:35 +0000 (22:17 +0000)
committercurt <curt>
Mon, 3 Dec 2001 22:17:35 +0000 (22:17 +0000)
src/Main/fg_props.cxx

index 1535d1d9b74d0f73ef218423b15b42ff26ae6838..162f26847c5169fd1fa5e34498b6c37c5f5353b2 100644 (file)
@@ -856,7 +856,7 @@ setAPThrottleControl (double value)
   if (getAPAutoThrottleLock())
     current_autopilot->AutoThrottleAdjust(value < 0.0 ? -0.01 : 0.01);
   else
-    globals->get_controls()->set_throttle(0, value);
+    globals->get_controls()->set_throttle(FGControls::ALL_ENGINES, value);
 }