From: curt Date: Tue, 29 Sep 1998 22:48:31 +0000 (+0000) Subject: More fine tuning of altitude hold. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3e7030cc4b2c700fb3e12deefb9bb863a3546015;p=flightgear.git More fine tuning of altitude hold. --- diff --git a/Autopilot/autopilot.cxx b/Autopilot/autopilot.cxx index 5803c5c6a..d74e809c0 100644 --- a/Autopilot/autopilot.cxx +++ b/Autopilot/autopilot.cxx @@ -343,7 +343,7 @@ int fgAPRun( void ) total_adj = 0.9 * prop_adj + 0.1 * int_adj; if ( total_adj > 0.5 ) { total_adj = 0.5; } - if ( total_adj < -0.3 ) { total_adj = -0.3; } + if ( total_adj < -0.2 ) { total_adj = -0.2; } fgElevSet( total_adj ); }