diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 16:27:43 -0400 |
commit | 91774f206e97d67cb8f16f5afeec03ce9c7e28ca (patch) | |
tree | 1a35d65d390633fa2d8c14618ecf99d97b776e59 /engine/overworld/map_setup.asm | |
parent | 98af69691d8994b07c19ef4e86f3f903da6091ed (diff) |
Replace "Unreferenced" labels with "; unreferenced" comments
Diffstat (limited to 'engine/overworld/map_setup.asm')
-rw-r--r-- | engine/overworld/map_setup.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/overworld/map_setup.asm b/engine/overworld/map_setup.asm index 92e706ab3..a767dc5e7 100644 --- a/engine/overworld/map_setup.asm +++ b/engine/overworld/map_setup.asm @@ -113,12 +113,12 @@ EnableTextAcceleration: ret ActivateMapAnims: - ld a, $1 + ld a, TRUE ldh [hMapAnims], a ret SuspendMapAnims: - xor a + xor a ; FALSE ldh [hMapAnims], a ret |