From 506e2155474b1914fe93f070c55debdeaf6df0a6 Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Wed, 22 Nov 2023 23:55:05 -0300 Subject: Yet another header cleanup (#1508) * lights.c * z64skin_matrix.h * Move out some stuff from macros.h * gamealloc.h * move most transition functions to z64transition.h * z64lib.h * `include` cleanup on transition files * z_overlay cleanup * z64malloc.h * format * forgot to remove those * forgot this * fix borken includes --- src/code/gamealloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/code/gamealloc.c') diff --git a/src/code/gamealloc.c b/src/code/gamealloc.c index 6067ad91c..a0d6f741f 100644 --- a/src/code/gamealloc.c +++ b/src/code/gamealloc.c @@ -1,10 +1,10 @@ -#include "global.h" +#include "gamealloc.h" + #include "system_malloc.h" void GameAlloc_Log(GameAlloc* this) { - GameAllocEntry* iter; + GameAllocEntry* iter = this->base.next; - iter = this->base.next; while (iter != &this->base) { iter = iter->next; } -- cgit v1.2.3