diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 10:21:24 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 10:21:24 -0400 |
commit | 9483cf47dd62d3c513dade49747e868f49f0e374 (patch) | |
tree | 079a0fad71dc0805b873aeaf30b4c032f0b790b3 /home/text.asm | |
parent | 599046c89283997efac417c445d0bdcf75fd373c (diff) |
Replace many '; unused' with '; unreferenced'
Diffstat (limited to 'home/text.asm')
-rw-r--r-- | home/text.asm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home/text.asm b/home/text.asm index 5e2942f6..77b8911c 100644 --- a/home/text.asm +++ b/home/text.asm @@ -138,6 +138,7 @@ RadioTerminator:: PrintText:: call SetUpTextbox + ; fallthrough PrintTextboxText:: bccoord TEXTBOX_INNERX, TEXTBOX_INNERY @@ -154,6 +155,7 @@ SetUpTextbox:: PlaceString:: push hl + ; fallthrough PlaceNextChar:: ld a, [de] @@ -164,7 +166,9 @@ PlaceNextChar:: pop hl ret - pop de ; unused +DummyChar:: ; unreferenced + pop de + ; fallthrough NextChar:: inc de @@ -301,12 +305,13 @@ PlaceKokoWa: print_name PlaceKokoWaText PlaceMoveTargetsName:: ldh a, [hBattleTurn] xor 1 - jr PlaceMoveUsersName.place + jr PlaceBattlersName PlaceMoveUsersName:: ldh a, [hBattleTurn] + ; fallthrough -.place: +PlaceBattlersName: push de and a jr nz, .enemy |