diff options
Diffstat (limited to 'src/code/gamealloc.c')
| -rw-r--r-- | src/code/gamealloc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/code/gamealloc.c b/src/code/gamealloc.c index 58894324b..e9be6beb0 100644 --- a/src/code/gamealloc.c +++ b/src/code/gamealloc.c @@ -5,7 +5,15 @@ void GameAlloc_Log(GameAlloc* this) { GameAllocEntry* iter = this->base.next; +#if MM_VERSION <= N64_JP_1_1 + (void)"this = %08x\n"; +#endif + while (iter != &this->base) { +#if MM_VERSION <= N64_JP_1_1 + (void)"ptr = %08x size = %d\n"; +#endif + iter = iter->next; } } |
