From d3128b9a7ffab9d4d9b615acf9527ee2f1744749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Wed, 10 May 2023 22:49:45 +0800 Subject: [PATCH] Make wCurrentBoxNum a byte instead of word (#414) --- ram/wram.asm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ram/wram.asm b/ram/wram.asm index 4923ebca..ac382f79 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -1896,7 +1896,9 @@ wBoxItems:: ds PC_ITEM_CAPACITY * 2 + 1 ; bits 0-6: box number ; bit 7: whether the player has changed boxes before -wCurrentBoxNum:: dw +wCurrentBoxNum:: db + + ds 1 ; number of HOF teams wNumHoFTeams:: db