diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:31 -0400 |
commit | c3c18dd19643ea48170bb3d0c5be5c9fe16e473e (patch) | |
tree | 94bb7a5a7438f4d61fdce35144fcae2fa71eaadb /home/joypad.asm | |
parent | 91774f206e97d67cb8f16f5afeec03ce9c7e28ca (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 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 |