]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/dynamics.cxx
Merge branch 'next' into durk-atc
[flightgear.git] / src / Airports / dynamics.cxx
index fd5025a38fba26e6db3f981f3841c82eed528993..398920f329e99cb0ec04fc31256ae1bc375a8f1a 100644 (file)
@@ -49,7 +49,7 @@ using std::random_shuffle;
 #include "dynamics.hxx"
 
 FGAirportDynamics::FGAirportDynamics(FGAirport * ap):
-_ap(ap), rwyPrefs(ap), SIDs(ap)
+_ap(ap), rwyPrefs(ap), SIDs(ap),startupController(this) 
 {
     lastUpdate = 0;
 
@@ -61,7 +61,7 @@ _ap(ap), rwyPrefs(ap), SIDs(ap)
 FGAirportDynamics::
 FGAirportDynamics(const FGAirportDynamics & other):rwyPrefs(other.
                                                             rwyPrefs),
-SIDs(other.SIDs)
+SIDs(other.SIDs), startupController(other.startupController)
 {
     for (FGParkingVecConstIterator ip = other.parkings.begin();
          ip != other.parkings.end(); ip++)