diff options
Diffstat (limited to 'include/egg/core/eggSystem.h')
| -rw-r--r-- | include/egg/core/eggSystem.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/egg/core/eggSystem.h b/include/egg/core/eggSystem.h index 28336391..634b7578 100644 --- a/include/egg/core/eggSystem.h +++ b/include/egg/core/eggSystem.h @@ -103,6 +103,12 @@ public: return static_cast<SimpleAudioMgr *>(mAudioMgr); } + // Trick to fix weak function order in d_sys.cpp + // https://github.com/zeldaret/ss/pull/305#issuecomment-4201728492 + void doInitialize() { + initialize(); + } + public: /* 0x38 */ u32 mGraphicsFifoSize; /* 0x3C */ GXRenderModeObj *mRenderMode; |
