diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-07-10 21:11:03 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-07-10 21:27:24 -0400 |
| commit | 96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0 (patch) | |
| tree | 103935618b8f9c8050b37fd4e51387e0a6fe0099 /home/play_time.asm | |
| parent | Replace "branch" labels in SFX files with local names (diff) | |
| download | pokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.tar.gz pokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.tar.xz pokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.zip | |
Identify some `.asm_*` labels
Diffstat (limited to 'home/play_time.asm')
| -rw-r--r-- | home/play_time.asm | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
