]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/system_mgr.cxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Systems / system_mgr.cxx
index 562231b68e4a751a058a5c580c9acc9719846ddf..f30f88f711941eccea1f851d6c2e943e9ac58f60 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "system_mgr.hxx"
 #include "electrical.hxx"
+#include "static.hxx"
 #include "vacuum.hxx"
 
 
@@ -26,7 +27,8 @@ void
 FGSystemMgr::init ()
 {
                                 // TODO: replace with XML configuration
-    _systems.push_back(new ElectricalSystem);
+    _systems.push_back(new FGElectricalSystem);
+    _systems.push_back(new StaticSystem);
     _systems.push_back(new VacuumSystem);
 
                                 // Initialize the individual systems