summaryrefslogtreecommitdiff
path: root/src/code/gamealloc.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-01-12 07:38:13 -0800
committerGitHub <noreply@github.com>2024-01-12 10:38:13 -0500
commit324db1d57830dcb2a45720445ac5d7904a6f5c6a (patch)
tree082de71ba2d4b8457be64e79bd2c37de99bd0ae2 /src/code/gamealloc.c
parent6eb3bf401cf768a81788e2aa90cb2cafbcd8d763 (diff)
Replace most osSyncPrintf calls with PRINTF macro (#1598)
* Replace most osSyncPrintf calls with PRINTF macro * DEBUG -> OOT_DEBUG
Diffstat (limited to 'src/code/gamealloc.c')
-rw-r--r--src/code/gamealloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/gamealloc.c b/src/code/gamealloc.c
index 2b1cd04d4..59f280aca 100644
--- a/src/code/gamealloc.c
+++ b/src/code/gamealloc.c
@@ -3,11 +3,11 @@
void GameAlloc_Log(GameAlloc* this) {
GameAllocEntry* iter;
- osSyncPrintf("this = %08x\n", this);
+ PRINTF("this = %08x\n", this);
iter = this->base.next;
while (iter != &this->base) {
- osSyncPrintf("ptr = %08x size = %d\n", iter, iter->size);
+ PRINTF("ptr = %08x size = %d\n", iter, iter->size);
iter = iter->next;
}
}