1
0
Fork 0

SGSubsystemMrg GroupType fixes for a few subsystem registrations.

This commit is contained in:
Edward d'Auvergne 2022-11-29 11:41:34 +01:00
parent 790b553500
commit 12ca368868
3 changed files with 6 additions and 3 deletions

View file

@ -123,4 +123,5 @@ void FGReplay::resetStatisticsProperties()
// Register the subsystem. // Register the subsystem.
SGSubsystemMgr::Registrant<FGReplay> registrantFGReplay; SGSubsystemMgr::Registrant<FGReplay> registrantFGReplay(
SGSubsystemMgr::POST_FDM);

View file

@ -649,7 +649,8 @@ void HUDText::draw()
// Register the subsystem. // 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, void TextList::align(const char *s, int align, float *x, float *y,

View file

@ -745,4 +745,5 @@ bool FGCom::isInRange(const double &freq) const
// Register the subsystem. // Register the subsystem.
SGSubsystemMgr::Registrant<FGCom> registrantFGCom; SGSubsystemMgr::Registrant<FGCom> registrantFGCom(
SGSubsystemMgr::SOUND);