From 57e41795f53f8d43d67e94f89b1b532e30cf8aec Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Tue, 21 Apr 2026 05:12:46 -0700 Subject: String macros (#1871) * PRINTF * T * fault * yaz0 * __osMalloc * audio_thread_manager * graph * padmgr * sched * z_play * z_arrow_ice * z_arrow_light * z_elf_msg * z_elf_msg3 * z_elf_msg4 * z_elf_msg5 * z_mir_ray * stackcheck * Include versions in macros.h * Fix workaround for permuter --- src/code/gamealloc.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/code/gamealloc.c') diff --git a/src/code/gamealloc.c b/src/code/gamealloc.c index e9be6beb0..d36d95da0 100644 --- a/src/code/gamealloc.c +++ b/src/code/gamealloc.c @@ -1,18 +1,15 @@ #include "gamealloc.h" #include "libc64/malloc.h" +#include "macros.h" void GameAlloc_Log(GameAlloc* this) { GameAllocEntry* iter = this->base.next; -#if MM_VERSION <= N64_JP_1_1 - (void)"this = %08x\n"; -#endif + PRINTF("this = %08x\n"); while (iter != &this->base) { -#if MM_VERSION <= N64_JP_1_1 - (void)"ptr = %08x size = %d\n"; -#endif + PRINTF("ptr = %08x size = %d\n"); iter = iter->next; } -- cgit v1.2.3