Clean up comments in sub_0200EB64 function

comments cleared
This commit is contained in:
darkruss48
2026-09-10 23:41:47 +02:00
committed by GitHub
parent 2c2c5c2a04
commit 4558d17ea1

View File

@@ -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;