summaryrefslogtreecommitdiff
path: root/src/code/gamealloc.c
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2026-04-21 05:12:46 -0700
committerGitHub <noreply@github.com>2026-04-21 08:12:46 -0400
commit57e41795f53f8d43d67e94f89b1b532e30cf8aec (patch)
treeb188e62dc98f6a0cace751c37f83236d5192afa5 /src/code/gamealloc.c
parentfa85e7cda5de980151ab71279b6a1bf2eca9b23f (diff)
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
Diffstat (limited to 'src/code/gamealloc.c')
-rw-r--r--src/code/gamealloc.c9
1 files changed, 3 insertions, 6 deletions
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;
}