summaryrefslogtreecommitdiff
path: root/include/egg
diff options
context:
space:
mode:
authorSean Miller <seanmiller999@gmail.com>2026-04-07 21:43:31 +0100
committerSean Miller <seanmiller999@gmail.com>2026-04-07 21:43:31 +0100
commit5083d2031c263e392165fe440fe175d67ef86bd1 (patch)
tree2b4885486e858f9caaeb4127dfdcdb79615ad628 /include/egg
parent880dc5f03ecc98c65e7e7d4adeae10a9a20613b7 (diff)
Fix weak function order in d_sys.cpp & mark matching
Diffstat (limited to 'include/egg')
-rw-r--r--include/egg/core/eggSystem.h6
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;