From ccb22d66c8a218f166ab195a684d6f2b85739273 Mon Sep 17 00:00:00 2001 From: Evan Chang Date: Wed, 29 Apr 2026 23:36:36 -0400 Subject: [PATCH] Simplify UNROLL16 macro --- src/code_800558C.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/src/code_800558C.c b/src/code_800558C.c index ead4a7e2a..f0e808274 100644 --- a/src/code_800558C.c +++ b/src/code_800558C.c @@ -4,24 +4,7 @@ #include "code_800558C.h" #include "math.h" -#define UNROLL16(x) do { \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ - x; \ -} while (0) +#define UNROLL16(x) do { x; x; x; x; x; x; x; x; x; x; x; x; x; x; x; x; } while (0) EWRAM_DATA bool8 gDrawWindow = FALSE; EWRAM_DATA s16 *gWin0HPtr = NULL;