From: david Date: Thu, 27 Dec 2001 22:34:32 +0000 (+0000) Subject: Set default elevator trim to 0 to avoid FPEs and improve transparency X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b70eae4c9c0ea42db9cb3571abfae3e60b5e7fe;p=flightgear.git Set default elevator trim to 0 to avoid FPEs and improve transparency (per-aircraft default trim can be set in the XML config files). --- diff --git a/src/Controls/controls.cxx b/src/Controls/controls.cxx index 286af8010..839353327 100644 --- a/src/Controls/controls.cxx +++ b/src/Controls/controls.cxx @@ -32,7 +32,7 @@ FGControls::FGControls() : aileron( 0.0 ), aileron_trim( 0.0 ), elevator( 0.0 ), - elevator_trim( 1.969572E-03 ), + elevator_trim( 0.0 ), rudder( 0.0 ), rudder_trim( 0.0 ), throttle_idle( true )