From 4558d17ea119588e7faf501abd0636b266b469cf Mon Sep 17 00:00:00 2001 From: darkruss48 <153812201+darkruss48@users.noreply.github.com> Date: Thu, 10 Sep 2026 23:41:47 +0200 Subject: [PATCH] Clean up comments in sub_0200EB64 function comments cleared --- src/item_util_1.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/item_util_1.c b/src/item_util_1.c index 514e3a67..79d60dc1 100644 --- a/src/item_util_1.c +++ b/src/item_util_1.c @@ -231,10 +231,6 @@ bool8 IsItemValidVeneer(s16 item_id) return IsItemValid(item_id); } -// NOTE: the s32 return (not s16) and the explicit lsl/lsr shifts are -// load-bearing for an exact match: s16 return emits lsl/asr #16, and -// (idx & 1) << 4 does not produce the mov/lsl + mov/lsr pair. -// Semantics unchanged (11-bit field, 0..0x7FF). s32 sub_0200EB64(s16 idx) { u32 shift = (u32)idx << 31;