SGSubsystemMrg GroupType fixes for a few subsystem registrations.
This commit is contained in:
parent
790b553500
commit
12ca368868
3 changed files with 6 additions and 3 deletions
|
@ -123,4 +123,5 @@ void FGReplay::resetStatisticsProperties()
|
|||
|
||||
|
||||
// Register the subsystem.
|
||||
SGSubsystemMgr::Registrant<FGReplay> registrantFGReplay;
|
||||
SGSubsystemMgr::Registrant<FGReplay> registrantFGReplay(
|
||||
SGSubsystemMgr::POST_FDM);
|
||||
|
|
|
@ -649,7 +649,8 @@ void HUDText::draw()
|
|||
|
||||
|
||||
// Register the subsystem.
|
||||
SGSubsystemMgr::Registrant<HUD> registrantHUD;
|
||||
SGSubsystemMgr::Registrant<HUD> registrantHUD(
|
||||
SGSubsystemMgr::DISPLAY);
|
||||
|
||||
|
||||
void TextList::align(const char *s, int align, float *x, float *y,
|
||||
|
|
|
@ -745,4 +745,5 @@ bool FGCom::isInRange(const double &freq) const
|
|||
|
||||
|
||||
// Register the subsystem.
|
||||
SGSubsystemMgr::Registrant<FGCom> registrantFGCom;
|
||||
SGSubsystemMgr::Registrant<FGCom> registrantFGCom(
|
||||
SGSubsystemMgr::SOUND);
|
||||
|
|
Loading…
Reference in a new issue