summaryrefslogtreecommitdiff
path: root/arm9/src/poke_overlay.c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-08-20 16:30:08 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-08-20 16:30:08 -0400
commit684cde0b321e955fdec5b86e125d9993ebb318c6 (patch)
tree98a6891a6627e60c1ef0313cdf9062d0b514c002 /arm9/src/poke_overlay.c
parentd3991f920ce0e1d4f9fd34dccdd7b37a239d4192 (diff)
Decompile game_init.c
Diffstat (limited to 'arm9/src/poke_overlay.c')
-rw-r--r--arm9/src/poke_overlay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm9/src/poke_overlay.c b/arm9/src/poke_overlay.c
index 237cdc26..4dd98670 100644
--- a/arm9/src/poke_overlay.c
+++ b/arm9/src/poke_overlay.c
@@ -40,7 +40,7 @@ THUMB_FUNC s32 GetOverlayLoadDestination(FSOverlayID id)
end = (u8 *)HW_ITCM_END;
if (info.header.ram_address <= end && info.header.ram_address >= start)
return OVERLAY_LOAD_ITCM;
- start = (u8 *)SDK_AUTOLOAD_DTCM_START;
+ start = (u8 *)HW_DTCM;
end = start + HW_DTCM_SIZE;
if (info.header.ram_address <= end && info.header.ram_address >= start)
return OVERLAY_LOAD_DTCM;