From 8c80824dbd65615c1750cb2ad9e876357ca81865 Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 27 Sep 2012 15:33:12 +0100 Subject: [PATCH] Tweak init order of controls/input. --- src/Main/fg_init.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index 3c3955c92..38f43dc85 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -686,13 +686,13 @@ void fgCreateSubsystems() { // Initialize the controls subsystem. //////////////////////////////////////////////////////////////////// - globals->add_subsystem("controls", new FGControls); + globals->add_subsystem("controls", new FGControls, SGSubsystemMgr::GENERAL); //////////////////////////////////////////////////////////////////// // Initialize the input subsystem. //////////////////////////////////////////////////////////////////// - globals->add_subsystem("input", new FGInput); + globals->add_subsystem("input", new FGInput, SGSubsystemMgr::GENERAL); //////////////////////////////////////////////////////////////////// -- 2.39.2