currently "tailwheel-lock=true" means 'unlocked', which is
confusing and inconsistent with brake properties (where 1.0 means (b)locked) ==> reverse tailwheel-lock meaning
This commit is contained in:
parent
1b88a799c0
commit
172dd40844
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue