summaryrefslogtreecommitdiff
path: root/src/code/m_malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/m_malloc.c')
-rw-r--r--src/code/m_malloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/m_malloc.c b/src/code/m_malloc.c
index a63ac74..69a20b1 100644
--- a/src/code/m_malloc.c
+++ b/src/code/m_malloc.c
@@ -42,11 +42,11 @@ s32 zelda_CheckArena(void) {
void zelda_InitArena(void* heap, size_t size) {
__osMallocInit(&zelda_arena, heap, size);
- Fault_AddClient(&B_80141FC8_jp, (void*)ArenaImpl_FaultClient, &zelda_arena, NULL);
+ fault_AddClient(&B_80141FC8_jp, (void*)ArenaImpl_FaultClient, &zelda_arena, NULL);
}
void zelda_CleanupArena(void) {
- Fault_RemoveClient(&B_80141FC8_jp);
+ fault_RemoveClient(&B_80141FC8_jp);
__osMallocCleanup(&zelda_arena);
}