summaryrefslogtreecommitdiff
path: root/engine/events
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-10-04 22:34:50 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-10-04 22:34:50 -0400
commitd9603e3e331655bb7e061b612730b68cd4378f96 (patch)
treea88104407c43ee98faccd789b5ef94967fbcf63a /engine/events
parente475ce6fdaad21ba34a64a708f7c23bad5625917 (diff)
Identify more unnamed labels
Diffstat (limited to 'engine/events')
-rw-r--r--engine/events/pokecenter_pc.asm16
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/events/pokecenter_pc.asm b/engine/events/pokecenter_pc.asm
index 7cb89e6d6..0503ee6f2 100644
--- a/engine/events/pokecenter_pc.asm
+++ b/engine/events/pokecenter_pc.asm
@@ -233,28 +233,28 @@ _PlayersPC:
ld [wWhichIndexSet], a
ld hl, PlayersPCAskWhatDoText
call PC_DisplayTextWaitMenu
- call Function15715
+ call .PlayersPC
call ExitMenu
ret
-Function15715:
+.PlayersPC:
xor a
ld [wPCItemsCursor], a
ld [wPCItemsScrollPosition], a
ld hl, PlayersPCMenuData
call LoadMenuHeader
-.asm_15722
+.loop
call UpdateTimePals
call DoNthMenu
- jr c, .asm_15731
+ jr c, .turn_off
call MenuJumptable
- jr nc, .asm_15722
- jr .asm_15732
+ jr nc, .loop
+ jr .done
-.asm_15731
+.turn_off
xor a
-.asm_15732
+.done
call ExitMenu
ret