From: ThorstenB Date: Wed, 19 Sep 2012 18:53:54 +0000 (+0200) Subject: Adjust subsystem order (instruments vs systems) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a68716316f1750913c93e7268aabb094bb544559;p=flightgear.git Adjust subsystem order (instruments vs systems) "instruments" depend on "systems" (pitot/static pressure etc), so "systems" should be there first. --- diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index a8ea0d5ad..67cf89250 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -592,8 +592,8 @@ void fgCreateSubsystems() { // autopilot.) //////////////////////////////////////////////////////////////////// - globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM); globals->add_subsystem("systems", new FGSystemMgr, SGSubsystemMgr::FDM); + globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM); //////////////////////////////////////////////////////////////////// // Initialize the XML Autopilot subsystem.