From 96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 10 Jul 2022 21:11:03 -0400 Subject: Identify some `.asm_*` labels --- home/play_time.asm | 8 ++++---- home/yes_no.asm | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'home') diff --git a/home/play_time.asm b/home/play_time.asm index d6c95fbd..25fb7a9a 100644 --- a/home/play_time.asm +++ b/home/play_time.asm @@ -49,12 +49,12 @@ TrackPlayTime:: CountDownIgnoreInputBitReset: ld a, [wIgnoreInputCounter] and a - jr nz, .asm_1f5e + jr nz, .decrement ld a, $ff - jr .asm_1f5f -.asm_1f5e + jr .continue +.decrement dec a -.asm_1f5f +.continue ld [wIgnoreInputCounter], a and a ret nz diff --git a/home/yes_no.asm b/home/yes_no.asm index 28d6c7aa..3f5a5a45 100644 --- a/home/yes_no.asm +++ b/home/yes_no.asm @@ -5,7 +5,7 @@ YesNoChoice:: call InitYesNoTextBoxParameters jr DisplayYesNoChoice -Func_35f7:: +TwoOptionMenu:: ; unreferenced ld a, TWO_OPTION_MENU ld [wTextBoxID], a call InitYesNoTextBoxParameters -- cgit v1.3.1-sl0p