From: curt Date: Mon, 3 Dec 2001 22:17:35 +0000 (+0000) Subject: Throttle runs all throttles simultaneously by default. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b3d2d2cd00ece782d29d52cc41bd01e3a460482e;p=flightgear.git Throttle runs all throttles simultaneously by default. --- diff --git a/src/Main/fg_props.cxx b/src/Main/fg_props.cxx index 1535d1d9b..162f26847 100644 --- a/src/Main/fg_props.cxx +++ b/src/Main/fg_props.cxx @@ -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); }