diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:29 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:29 -0400 |
commit | 9dee89fae39ce638beed51edbc3f837a6222bd68 (patch) | |
tree | 09f8c7436d45f265e8429c382368c552cf050db3 /engine/overworld/map_setup.asm | |
parent | e0df1a6041b73e8304e8c5a691b454652f5a667d (diff) |
Replace "Unreferenced" labels with "; unreferenced" comments
Diffstat (limited to 'engine/overworld/map_setup.asm')
-rw-r--r-- | engine/overworld/map_setup.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/overworld/map_setup.asm b/engine/overworld/map_setup.asm index 1b0a6c08..210a7b0f 100644 --- a/engine/overworld/map_setup.asm +++ b/engine/overworld/map_setup.asm @@ -111,13 +111,13 @@ EnableTextAcceleration: ld [wDisableTextAcceleration], a ret -Unreferenced_ActivateMapAnims: - ld a, $1 +DuplicateActivateMapAnims: ; unreferenced + ld a, TRUE ldh [hMapAnims], a ret -Unreferenced_SuspendMapAnims: - xor a +DuplicateSuspendMapAnims: ; unreferenced + xor a ; FALSE ldh [hMapAnims], a ret @@ -221,12 +221,12 @@ FadeOutMapMusic: ret ActivateMapAnims: - ld a, $1 + ld a, TRUE ldh [hMapAnims], a ret SuspendMapAnims: - xor a + xor a ; FALSE ldh [hMapAnims], a ret |