summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-05-30 23:32:03 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2021-05-30 23:32:03 -0400
commite140e88b7b38f5c70aa6ddcf826f88bcafee4ea3 (patch)
tree302af922cb6897ecb190e6d0c6758b64891e0dba
parented0a0f71591dd802d6491d57a52040a360cfb406 (diff)
Add more comments to tileset palette animation functions
-rw-r--r--engine/tilesets/tileset_anims.asm8
1 files changed, 6 insertions, 2 deletions
diff --git a/engine/tilesets/tileset_anims.asm b/engine/tilesets/tileset_anims.asm
index 8f793702b..ca2a86a75 100644
--- a/engine/tilesets/tileset_anims.asm
+++ b/engine/tilesets/tileset_anims.asm
@@ -922,7 +922,7 @@ AnimateWaterPalette:
ret nz
; Ready for BGPD input
- ld a, (1 << rBGPI_AUTO_INCREMENT) palette PAL_BG_WATER
+ ld a, (1 << rBGPI_AUTO_INCREMENT) palette PAL_BG_WATER color 0
ldh [rBGPI], a
ldh a, [rSVBK]
@@ -937,6 +937,8 @@ AnimateWaterPalette:
cp %100
jr z, .color2
+; Copy one color from hl to rBGPI via rBGPD
+
; color1
ld hl, wBGPals1 palette PAL_BG_WATER color 1
ld a, [hli]
@@ -987,7 +989,7 @@ FlickeringCaveEntrancePalette:
ldh [rSVBK], a
; Ready for BGPD input
- ld a, (1 << rBGPI_AUTO_INCREMENT) palette PAL_BG_YELLOW
+ ld a, (1 << rBGPI_AUTO_INCREMENT) palette PAL_BG_YELLOW color 0
ldh [rBGPI], a
; A cycle of 2 colors (0 2), updating every other vblank
@@ -995,6 +997,8 @@ FlickeringCaveEntrancePalette:
and %10
jr nz, .color1
+; Copy one color from hl to rBGPI via rBGPD
+
; color0
ld hl, wBGPals1 palette PAL_BG_YELLOW color 0
jr .okay