1
0
Fork 0

Adjust subsystem order (instruments vs systems)

"instruments" depend on "systems" (pitot/static pressure etc), so
"systems" should be there first.
This commit is contained in:
ThorstenB 2012-09-19 20:53:54 +02:00
parent f6207d5cb8
commit a68716316f

View file

@ -592,8 +592,8 @@ void fgCreateSubsystems() {
// autopilot.) // autopilot.)
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM);
globals->add_subsystem("systems", new FGSystemMgr, SGSubsystemMgr::FDM); globals->add_subsystem("systems", new FGSystemMgr, SGSubsystemMgr::FDM);
globals->add_subsystem("instrumentation", new FGInstrumentMgr, SGSubsystemMgr::FDM);
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Initialize the XML Autopilot subsystem. // Initialize the XML Autopilot subsystem.