diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-07 15:09:54 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-07 16:21:26 -0400 |
commit | 4a7d1513f3135a3c926233d47921b21bf8b1fab4 (patch) | |
tree | 22e14964dcd2e6dae66de392c32caf33e70c964b /home/vcopy.asm | |
parent | b945988a0af9de9a37d95be8b117f395bc6e5592 (diff) |
Use 'tile' and 'tiles' macros
Diffstat (limited to 'home/vcopy.asm')
-rw-r--r-- | home/vcopy.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/vcopy.asm b/home/vcopy.asm index 1a7863e9..458fa610 100644 --- a/home/vcopy.asm +++ b/home/vcopy.asm @@ -393,7 +393,7 @@ UpdateMovingBgTiles:: ; water - ld hl, vTileset + $14 * $10 + ld hl, vTileset tile $14 ld c, $10 ld a, [wMovingBGTilesCounter2] @@ -438,7 +438,7 @@ UpdateMovingBgTiles:: jr z, .copy ld hl, FlowerTile3 .copy - ld de, vTileset + $3 * $10 + ld de, vTileset tile $03 ld c, $10 .loop ld a, [hli] |