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:11:03 -0400 |
| commit | 8f81e71f192bce4b6f56b042638da376737e5abc (patch) | |
| tree | bb2fb2cd6ccab2514c7014323971302f5aebe0e1 /engine/play_time.asm | |
| parent | Replace "branch" labels in SFX files with local names (diff) | |
| download | pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.tar.gz pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.tar.xz pokeyellow-8f81e71f192bce4b6f56b042638da376737e5abc.zip | |
Identify some `.asm_*` labels
Diffstat (limited to 'engine/play_time.asm')
| -rw-r--r-- | engine/play_time.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/play_time.asm b/engine/play_time.asm index 29897242..dcba88c2 100644 --- a/engine/play_time.asm +++ b/engine/play_time.asm @@ -39,12 +39,12 @@ TrackPlayTime:: CountDownIgnoreInputBitReset: ld a, [wIgnoreInputCounter] and a - jr nz, .asm_18e40 + jr nz, .decrement ld a, $ff - jr .asm_18e41 -.asm_18e40 + jr .continue +.decrement dec a -.asm_18e41 +.continue ld [wIgnoreInputCounter], a and a ret nz |
