From: mfranz Date: Wed, 7 Nov 2007 17:41:31 +0000 (+0000) Subject: don't overwrite rudder position with nose wheel position X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e69b633060a239c5a96c323d7c5e4b16db9b981f;p=flightgear.git don't overwrite rudder position with nose wheel position --- diff --git a/src/Network/native_fdm.cxx b/src/Network/native_fdm.cxx index b1bebc5f8..0d499b4e9 100644 --- a/src/Network/native_fdm.cxx +++ b/src/Network/native_fdm.cxx @@ -214,7 +214,7 @@ void FGProps2NetFDM( FGNetFDM *net, bool net_byte_order ) { net->left_aileron = node->getDoubleValue( "left-aileron-pos-norm" ); net->right_aileron = node->getDoubleValue( "right-aileron-pos-norm" ); net->rudder = node->getDoubleValue( "rudder-pos-norm" ); - net->rudder = node->getDoubleValue( "nose-wheel-pos-norm" ); + net->nose_wheel = node->getDoubleValue( "nose-wheel-pos-norm" ); net->speedbrake = node->getDoubleValue( "speedbrake-pos-norm" ); net->spoilers = node->getDoubleValue( "spoilers-pos-norm" );