summaryrefslogtreecommitdiff
path: root/src/Main/System
diff options
context:
space:
mode:
authorAetias <144526980+AetiasHax@users.noreply.github.com>2025-07-17 12:21:10 +0200
committerGitHub <noreply@github.com>2025-07-17 12:21:10 +0200
commit573b696ff8d3e83765d4483e5a31e0ec5676044d (patch)
tree1cf20516095cb8a3185de07efbad6974d2260709 /src/Main/System
parent7a01af4783ca2904590ed0ba6e61261d98706f47 (diff)
Bump dsd to v0.10.1; UnkStruct_027e05f8_2 OK (#121)
* Unique delink file names * Fix build * Revert back to single link * UnkStruct_027e05f8_2 OK * `dsd fix ctor-symbols` * Fix symbols spanning over two delink files * `dsd fix ctor-symbols` again * Add missing function `func_02050a20` * Name `.p__sinit` symbols in USA after their EUR counterparts * Apply dsd signatures * Bump dsd to 0.10.0; Fix dsd not updating automatically * Rename overlay functions * Fix auto-download wibo * Fix generating objdiff report
Diffstat (limited to 'src/Main/System')
-rw-r--r--src/Main/System/OverlayManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main/System/OverlayManager.cpp b/src/Main/System/OverlayManager.cpp
index 8454e27b..3f78516e 100644
--- a/src/Main/System/OverlayManager.cpp
+++ b/src/Main/System/OverlayManager.cpp
@@ -10,7 +10,7 @@ extern "C" void func_ov007_021028a0(u32 **);
THUMB void OverlayManager::Load(OverlayIndex index, OverlayId id) {
if (id != OverlayId_None) {
- Overlay_Load(NULL, id);
+ FS_LoadOverlay(NULL, id);
}
this->mLoadedOverlays[index] = id;
@@ -27,7 +27,7 @@ THUMB void OverlayManager::LoadIfNotLoaded(OverlayIndex index, OverlayId id) {
THUMB void OverlayManager::Unload(OverlayIndex index) {
if (this->mLoadedOverlays[index] != OverlayId_None) {
- Overlay_Unload(NULL, this->mLoadedOverlays[index]);
+ FS_UnloadOverlay(NULL, this->mLoadedOverlays[index]);
this->mLoadedOverlays[index] = OverlayId_None;
}
}