From a3fef4c1ac0bdc587ea4cf7f9eebcb58ea679f11 Mon Sep 17 00:00:00 2001 From: darkruss48 <153812201+darkruss48@users.noreply.github.com> Date: Thu, 10 Sep 2026 23:44:39 +0200 Subject: [PATCH] Clean up comments in mai_020527A8.c file comments cleared --- src/main_020527A8.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main_020527A8.c b/src/main_020527A8.c index c8bda0ee..0dbcaf9b 100644 --- a/src/main_020527A8.c +++ b/src/main_020527A8.c @@ -22,15 +22,11 @@ u8 GetSpriteSize(s16 monster_id) if (size <= 6) { return 6; } - // NOTE: reload through raw (not size) is load-bearing for an exact - // match: reusing size lets the compiler fold both loads into one. return MONSTER_SPRITE_DATA[raw].sprite_size; } u32 GetSpriteFileSize(s16 monster_id) { s32 raw = monster_id % 600; - // NOTE: u32 return (not u8 as in pmdsky-debug): no truncation is - // emitted and callers accumulate the full value (field << 9). return MONSTER_SPRITE_DATA[raw].sprite_file_size << 9; }