From 474cfba250eed3cd1167827826a4171ac8e007ac Mon Sep 17 00:00:00 2001 From: hiimcody1 Date: Sat, 8 Jun 2024 21:29:20 -0400 Subject: [PATCH] Add indicator for pseudoboots to File Select screen --- fileselect.asm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/fileselect.asm b/fileselect.asm index b67f37b..01e3f3f 100644 --- a/fileselect.asm +++ b/fileselect.asm @@ -390,7 +390,13 @@ DrawPlayerFileShared: LDA.l HexToDecDigit5 : AND.w #$00FF : ORA.w #!FS_COLOR_BW|$02E0 : %fs_draw8x8(11,27) ; Boots - %fs_drawItemBasic(EquipmentSRAM+$15,3,28,FileSelectItems_boots) + LDA.l EquipmentSRAM+$15 : AND.w #$00FF : BNE + + LDA.l FakeBoots : AND.w #$00FF : BEQ + + %fs_drawItem(3,28,FileSelectItems_fakeBoots) + BRA ++ + + + %fs_drawItemBasic(EquipmentSRAM+$15,3,28,FileSelectItems_boots) + ++ ; Gloves LDA.l EquipmentSRAM+$14 : AND.w #$00FF : BNE + @@ -543,6 +549,8 @@ FileSelectItems: .boots dw #$028C|!FS_COLOR_BOOTS, #$028D|!FS_COLOR_BOOTS, #$029C|!FS_COLOR_BOOTS, #$029D|!FS_COLOR_BOOTS + .fakeBoots + dw #$028C|!FS_COLOR_BLUE, #$028D|!FS_COLOR_BLUE, #$029C|!FS_COLOR_BLUE, #$029D|!FS_COLOR_BLUE .pearl dw #$02A4|!FS_COLOR_RED, #$02A5|!FS_COLOR_RED, #$02B4|!FS_COLOR_RED, #$02B5|!FS_COLOR_RED