]> git.mxchange.org Git - flightgear.git/commitdiff
currently "tailwheel-lock=true" means 'unlocked', which is
authormfranz <mfranz>
Tue, 10 May 2005 10:56:55 +0000 (10:56 +0000)
committermfranz <mfranz>
Tue, 10 May 2005 10:56:55 +0000 (10:56 +0000)
confusing and inconsistent with brake properties (where 1.0
means (b)locked) ==> reverse tailwheel-lock meaning

src/Controls/controls.cxx

index 57f19d7027323e9871ca7f20c792cd90226c26ae..7da87d3c7bc7286bb0765dfe34adca1d04c682be 100644 (file)
@@ -83,7 +83,7 @@ FGControls::FGControls() :
     tailhook( false ),
     launchbar( false ),
     catapult_launch_cmd( false ),
-    tailwheel_lock( false ),
+    tailwheel_lock( true ),
     wing_heat( false ),
     pitot_heat( true ),
     wiper( 0 ),
@@ -161,7 +161,7 @@ void FGControls::reset_all()
     tailhook = false;
     launchbar = false;
     catapult_launch_cmd = false;
-    tailwheel_lock = false;
+    tailwheel_lock = true;
     set_carb_heat( ALL_ENGINES, false );
     set_inlet_heat( ALL_ENGINES, false );
     wing_heat = false;