1
0
Fork 0

Throttle runs all throttles simultaneously by default.

This commit is contained in:
curt 2001-12-03 22:17:35 +00:00
parent 58aa15ece9
commit b3d2d2cd00

View file

@ -856,7 +856,7 @@ setAPThrottleControl (double value)
if (getAPAutoThrottleLock()) if (getAPAutoThrottleLock())
current_autopilot->AutoThrottleAdjust(value < 0.0 ? -0.01 : 0.01); current_autopilot->AutoThrottleAdjust(value < 0.0 ? -0.01 : 0.01);
else else
globals->get_controls()->set_throttle(0, value); globals->get_controls()->set_throttle(FGControls::ALL_ENGINES, value);
} }