1
0
Fork 0

Cleaned up initialization of parking brake to be more consistent.

This commit is contained in:
david 2002-04-26 01:53:41 +00:00
parent 05bb076784
commit 8b411b244b

View file

@ -59,7 +59,10 @@ FGControls::FGControls() :
elevator_trim( 0.0 ),
rudder( 0.0 ),
rudder_trim( 0.0 ),
throttle_idle( true )
flaps( 0.0 ),
parking_brake( 0.0 ),
throttle_idle( true ),
gear_down( false )
{
}
@ -100,7 +103,6 @@ FGControls::init ()
brake[wheel] = 0.0;
}
parking_brake = 0.0;
auto_coordination = fgGetNode("/sim/auto-coordination", true);
}