From 5083d2031c263e392165fe440fe175d67ef86bd1 Mon Sep 17 00:00:00 2001 From: Sean Miller Date: Tue, 7 Apr 2026 21:43:31 +0100 Subject: Fix weak function order in d_sys.cpp & mark matching --- include/egg/core/eggSystem.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/egg/core/eggSystem.h') 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(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; -- cgit v1.2.3