]> git.mxchange.org Git - flightgear.git/commitdiff
Fixed an if statement typo.
authorcurt <curt>
Wed, 13 Feb 2002 17:43:01 +0000 (17:43 +0000)
committercurt <curt>
Wed, 13 Feb 2002 17:43:01 +0000 (17:43 +0000)
src/Network/native_fdm.cxx

index b6e2c9765bd8c1a29a8254def53c51a6afd746e7..33566a9d898e43202d764981c4117535ad7033da 100644 (file)
@@ -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);
        }