]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_init.cxx
Fix indentation and mixed-up white-space/tabs
[flightgear.git] / src / Main / fg_init.cxx
index 1def26fe196c996b12330628cc9246912cde7222..f7c591d397dc3e17d66307259293b54a2bc4cf66 100644 (file)
@@ -99,6 +99,7 @@
 #include <Viewer/viewmgr.hxx>
 #include <Navaids/NavDataCache.hxx>
 #include <Instrumentation/HUD/HUD.hxx>
+#include <Cockpit/cockpitDisplayManager.hxx>
 
 #include "fg_init.hxx"
 #include "fg_io.hxx"
@@ -607,6 +608,7 @@ void fgCreateSubsystems() {
     globals->add_subsystem("systems", new FGSystemMgr, SGSubsystemMgr::FDM);
     globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM);
     globals->add_subsystem("hud", new HUD, SGSubsystemMgr::DISPLAY);
+    globals->add_subsystem("cockpit-displays", new flightgear::CockpitDisplayManager, SGSubsystemMgr::DISPLAY);
   
     ////////////////////////////////////////////////////////////////////
     // Initialize the XML Autopilot subsystem.
@@ -839,6 +841,8 @@ void fgReInitSubsystems()
     globals->get_subsystem("systems")->reinit();
     globals->get_subsystem("instrumentation")->reinit();
 
+    globals->get_subsystem("ATIS")->reinit();
+
 // setup state to end re-init
     fgSetBool("/sim/signals/reinit", false);
     if ( !freeze ) {