From b3d2d2cd00ece782d29d52cc41bd01e3a460482e Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 3 Dec 2001 22:17:35 +0000 Subject: [PATCH] Throttle runs all throttles simultaneously by default. --- src/Main/fg_props.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5