summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2024-12-19 05:38:44 +0000
committerGitHub <noreply@github.com>2024-12-19 16:38:44 +1100
commit047c505b96287d82dff47c105c909a9965fde9ac (patch)
treeca84ac841df9db19cb293359e62de2f66d05f20d /include
parent5d4931787665b6dfcbf350ac48e3d6687bfc7685 (diff)
Remove gSystemHeap and the system_heap spec segment, use _buffersSegmentEnd to represent the start of the system heap (#1767)
Diffstat (limited to 'include')
-rw-r--r--include/buffers.h1
-rw-r--r--include/segment_symbols.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/buffers.h b/include/buffers.h
index 4159173a9..22cf06589 100644
--- a/include/buffers.h
+++ b/include/buffers.h
@@ -25,7 +25,6 @@ extern u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE];
extern STACK(gGfxSPTaskStack, 0x400);
extern GfxPool gGfxPools[2];
extern u8 gAudioHeap[0x138000];
-extern u8 gSystemHeap[];
typedef union {
diff --git a/include/segment_symbols.h b/include/segment_symbols.h
index 922f818d7..c29b22838 100644
--- a/include/segment_symbols.h
+++ b/include/segment_symbols.h
@@ -78,7 +78,7 @@ DECLARE_SEGMENT(code)
DECLARE_ROM_SEGMENT(code)
DECLARE_BSS_SEGMENT(code)
-DECLARE_SEGMENT(system_heap)
+DECLARE_SEGMENT(buffers)
DECLARE_OVERLAY_SEGMENT(kaleido_scope)
DECLARE_OVERLAY_SEGMENT(player_actor)