diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:16:44 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-09 15:20:35 -0500 |
commit | bc8636d68805116ef126feecc07cde63238490da (patch) | |
tree | d88fed0393eb69c8c37fbaf7ee21f7dd3af289c9 /engine/battle_anims/anim_commands.asm | |
parent | 6e20c30f6e48ba36237d42b13ea6e6827b62ff40 (diff) |
Replace $0 with 0 for "ld l, a / ld h, 0" idiom
Diffstat (limited to 'engine/battle_anims/anim_commands.asm')
-rw-r--r-- | engine/battle_anims/anim_commands.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/battle_anims/anim_commands.asm b/engine/battle_anims/anim_commands.asm index 6d4129fa..9d9e6ef5 100644 --- a/engine/battle_anims/anim_commands.asm +++ b/engine/battle_anims/anim_commands.asm @@ -654,7 +654,7 @@ BattleAnimCmd_5GFX: push bc push hl ld l, a - ld h, $0 + ld h, 0 rept 4 add hl, hl endr |