]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/NullFDM.cxx
Fix line endings
[flightgear.git] / src / FDM / NullFDM.cxx
index d290d6eb06dbaaf74cf9ed4d2ccd6aaf8ff41171..5589c4490a79c083e8fc16f056774283eb2fe9ee 100644 (file)
@@ -40,6 +40,8 @@ FGNullFDM::~FGNullFDM() {
 // Initialize the NullFDM flight model, dt is the time increment
 // for each subsequent iteration through the EOM
 void FGNullFDM::init() {
+    //do init common to all the FDM's          
+    common_init();
     // cout << "FGNullFDM::init()" << endl;
     set_inited( true );
 }
@@ -50,4 +52,6 @@ void FGNullFDM::init() {
 // external source.)
 void FGNullFDM::update( double dt ) {
     // cout << "FGNullFDM::update()" << endl;
+    // That is just to trigger ground level computations
+    _updateGeodeticPosition(get_Latitude(), get_Longitude(), get_Altitude());
 }