1
0
Fork 0

Fix crash with auto-coordination. (Eg, the Beaver)

Identified by Michiel Fierst.
This commit is contained in:
James Turner 2021-03-17 11:44:21 +00:00
parent f651ed2f15
commit ca632cfe4e

View file

@ -545,7 +545,9 @@ FGControls::move_elevator_trim( double amt )
void FGControls::set_rudder(double pos) void FGControls::set_rudder(double pos)
{ {
_inner_set_rudder(pos); _inner_set_rudder(pos);
_rudderNode->fireValueChanged(); if (_rudderNode) {
_rudderNode->fireValueChanged();
}
} }
void void