From: James Turner Date: Thu, 27 Sep 2012 14:33:12 +0000 (+0100) Subject: Tweak init order of controls/input. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8c80824dbd65615c1750cb2ad9e876357ca81865;p=flightgear.git Tweak init order of controls/input. --- 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); ////////////////////////////////////////////////////////////////////