From: curt Date: Wed, 13 Feb 2002 17:43:01 +0000 (+0000) Subject: Fixed an if statement typo. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9e6ee4b70301c06ad5b34405d5813c47d1b7eb41;p=flightgear.git Fixed an if statement typo. --- diff --git a/src/Network/native_fdm.cxx b/src/Network/native_fdm.cxx index b6e2c9765..33566a9d8 100644 --- a/src/Network/native_fdm.cxx +++ b/src/Network/native_fdm.cxx @@ -168,7 +168,7 @@ static void net2global( FGNetFDM *net, FGInterface *global ) { cur_fdm_state->_set_V_calibrated_kts( net->vcas ); cur_fdm_state->_set_Climb_Rate( net->climb_rate ); - if ( ! net->cur_time ) { + if ( net->cur_time ) { fgSetLong("/sim/time/cur-time-override", net->cur_time); }