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.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;
}
}