1
0
Fork 0

Switch roll and yaw trim commands

This commit is contained in:
ehofman 2003-05-28 17:53:42 +00:00
parent 503d2839cc
commit 679325b947

View file

@ -602,13 +602,13 @@ void FGFCS::bind(void)
&FGFCS::SetPitchTrimCmd, &FGFCS::SetPitchTrimCmd,
true); true);
PropertyManager->Tie("fcs/roll-trim-cmd-norm", this, PropertyManager->Tie("fcs/roll-trim-cmd-norm", this,
&FGFCS::GetYawTrimCmd,
&FGFCS::SetYawTrimCmd,
true);
PropertyManager->Tie("fcs/yaw-trim-cmd-norm", this,
&FGFCS::GetRollTrimCmd, &FGFCS::GetRollTrimCmd,
&FGFCS::SetRollTrimCmd, &FGFCS::SetRollTrimCmd,
true); true);
PropertyManager->Tie("fcs/yaw-trim-cmd-norm", this,
&FGFCS::GetYawTrimCmd,
&FGFCS::SetYawTrimCmd,
true);
PropertyManager->Tie("gear/gear-cmd-norm", this, PropertyManager->Tie("gear/gear-cmd-norm", this,
&FGFCS::GetGearCmd, &FGFCS::GetGearCmd,
&FGFCS::SetGearCmd, &FGFCS::SetGearCmd,