From 3e7030cc4b2c700fb3e12deefb9bb863a3546015 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 29 Sep 1998 22:48:31 +0000 Subject: [PATCH] More fine tuning of altitude hold. --- Autopilot/autopilot.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.39.2