Tweak init order of controls/input.
This commit is contained in:
parent
fe3a1424eb
commit
8c80824dbd
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue