summaryrefslogtreecommitdiff
path: root/home/list_menu.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-20 12:23:31 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-20 12:31:35 -0400
commit69788c536b70060c58136b07fb3a615b285de99c (patch)
treec5a21b6e4d24ad3e98c3c98982afc65a866e650d /home/list_menu.asm
parent0177688ad4d923c4970009fa87df48605bb43ed6 (diff)
Add comments associating constants with data, and identify some more data
Diffstat (limited to 'home/list_menu.asm')
-rw-r--r--home/list_menu.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/list_menu.asm b/home/list_menu.asm
index f8ddeeef..c856e91d 100644
--- a/home/list_menu.asm
+++ b/home/list_menu.asm
@@ -34,7 +34,7 @@ DisplayListMenuID::
hlcoord 4, 2 ; coordinates of upper left corner of menu text box
lb de, 9, 14 ; height and width of menu text box
ld a, [wListMenuID]
- and a ; is it a PC pokemon list?
+ and a ; PCPOKEMONLISTMENU?
jr nz, .skipMovingSprites
call UpdateSprites
.skipMovingSprites
@@ -126,7 +126,7 @@ DisplayListMenuIDLoop::
ld a, [hl]
ld [wcf91], a
ld a, [wListMenuID]
- and a ; is it a PC pokemon list?
+ and a ; PCPOKEMONLISTMENU?
jr z, .pokemonList
push hl
call GetItemPrice
@@ -374,7 +374,7 @@ PrintListMenuEntries::
push hl
push de
ld a, [wListMenuID]
- and a
+ and a ; PCPOKEMONLISTMENU?
jr z, .pokemonPCMenu
cp MOVESLISTMENU
jr z, .movesMenu
@@ -422,7 +422,7 @@ PrintListMenuEntries::
call PrintBCDNumber
.skipPrintingItemPrice
ld a, [wListMenuID]
- and a
+ and a ; PCPOKEMONLISTMENU?
jr nz, .skipPrintingPokemonLevel
.printPokemonLevel
ld a, [wd11e]