summaryrefslogtreecommitdiff
path: root/src/code/gamealloc.c
diff options
context:
space:
mode:
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;
}