From c9e1e93504900239e4c5280150d21462ca1f7238 Mon Sep 17 00:00:00 2001 From: gamemasterplc Date: Fri, 10 May 2024 20:41:59 -0500 Subject: [PATCH] Fix HuMemInitAll int --- src/game/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/malloc.c b/src/game/malloc.c index 4eb3be59..863f8c57 100644 --- a/src/game/malloc.c +++ b/src/game/malloc.c @@ -7,7 +7,7 @@ static void *HeapTbl[HEAP_MAX]; void HuMemInitAll(void) { - int i; + s32 i; void *ptr; u32 free_size; for(i=0; i<4; i++) {