diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:40 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:40 -0400 |
commit | f680408489f026cce3d1d3344bc3d944a679e5aa (patch) | |
tree | b6f8e8f945d899e8a5d4fe6e0b8e56931f9b0b7f /home/joypad.asm | |
parent | 9dee89fae39ce638beed51edbc3f837a6222bd68 (diff) |
Comment more ROM labels as unreferenced
(Some unreferenced labels are above code which is still used via fallthrough!)
Diffstat (limited to 'home/joypad.asm')
-rw-r--r-- | home/joypad.asm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/home/joypad.asm b/home/joypad.asm index fd441178..66d5649e 100644 --- a/home/joypad.asm +++ b/home/joypad.asm @@ -261,19 +261,20 @@ StopAutoInput:: ld [wInputType], a ret -JoyTitleScreenInput:: +JoyTitleScreenInput:: ; unreferenced .loop - call DelayFrame push bc call JoyTextDelay pop bc +; Save data can be deleted by pressing Up + B + Select. ldh a, [hJoyDown] cp D_UP | SELECT | B_BUTTON jr z, .keycombo +; Press Start or A to start the game. ldh a, [hJoyLast] and START | A_BUTTON jr nz, .keycombo |