]> git.mxchange.org Git - flightgear.git/commitdiff
Fix a potential timing glitch.
authorcurt <curt>
Fri, 30 May 2003 20:19:56 +0000 (20:19 +0000)
committercurt <curt>
Fri, 30 May 2003 20:19:56 +0000 (20:19 +0000)
src/Network/native_fdm.cxx

index 985ac08b4894b17cd2940e13266cb49f9d50a4ae..70c98c6bf7690764a89d608634930a2633526f54 100644 (file)
@@ -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;
 }