summaryrefslogtreecommitdiff
path: root/home/joypad.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-06-21 18:33:31 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-06-21 18:33:31 -0400
commitc3c18dd19643ea48170bb3d0c5be5c9fe16e473e (patch)
tree94bb7a5a7438f4d61fdce35144fcae2fa71eaadb /home/joypad.asm
parent91774f206e97d67cb8f16f5afeec03ce9c7e28ca (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.asm5
1 files changed, 3 insertions, 2 deletions
diff --git a/home/joypad.asm b/home/joypad.asm
index 79129ecc4..05868d8b3 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