From: curt Date: Fri, 30 May 2003 20:19:56 +0000 (+0000) Subject: Fix a potential timing glitch. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=948d2bfca6196a42ec6a76e590764289cfb8816c;p=flightgear.git Fix a potential timing glitch. --- diff --git a/src/Network/native_fdm.cxx b/src/Network/native_fdm.cxx index 985ac08b4..70c98c6bf 100644 --- a/src/Network/native_fdm.cxx +++ b/src/Network/native_fdm.cxx @@ -95,7 +95,12 @@ bool FGNativeFDM::open() { set_enabled( true ); + // initialize time stamp to something reasonably current + last_time.stamp(); + + // Is this really needed here ???? cur_fdm_state->_set_Sea_level_radius( SG_EQUATORIAL_RADIUS_FT ); + return true; }