1
0
Fork 0

Tweak init order of controls/input.

This commit is contained in:
James Turner 2012-09-27 15:33:12 +01:00
parent fe3a1424eb
commit 8c80824dbd

View file

@ -686,13 +686,13 @@ void fgCreateSubsystems() {
// Initialize the controls subsystem. // Initialize the controls subsystem.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
globals->add_subsystem("controls", new FGControls); globals->add_subsystem("controls", new FGControls, SGSubsystemMgr::GENERAL);
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Initialize the input subsystem. // Initialize the input subsystem.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
globals->add_subsystem("input", new FGInput); globals->add_subsystem("input", new FGInput, SGSubsystemMgr::GENERAL);
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////