From a68716316f1750913c93e7268aabb094bb544559 Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Wed, 19 Sep 2012 20:53:54 +0200 Subject: [PATCH] Adjust subsystem order (instruments vs systems) "instruments" depend on "systems" (pitot/static pressure etc), so "systems" should be there first. --- src/Main/fg_init.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5