aboutsummaryrefslogtreecommitdiff
path: root/animations
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-03-11 18:46:42 +0900
committerAstatin <[email protected]>2025-03-11 18:46:42 +0900
commitab45947d3fdc9885c497d9fc3dd124c7986f6ea4 (patch)
tree6800a9c3ebaebb5f35d54fd5ed1e0e8214953544 /animations
parent957834ffafd4c82700e27fd9d69b695bb2247d97 (diff)
Add invincible friendly bunny you can talk to
Diffstat (limited to 'animations')
-rw-r--r--animations/laser.gbasm2
-rw-r--r--animations/rotatingball.gbasm2
-rw-r--r--animations/sparkles.gbasm4
3 files changed, 4 insertions, 4 deletions
diff --git a/animations/laser.gbasm b/animations/laser.gbasm
index c76b464..a3536d7 100644
--- a/animations/laser.gbasm
+++ b/animations/laser.gbasm
@@ -118,7 +118,7 @@ Laser_Animation:
LD A, B
LD (HL+), A
- LD A, $64
+ LD A, $vram_animation_index+4
LD (HL+), A
LD A, $00
LD (HL+), A
diff --git a/animations/rotatingball.gbasm b/animations/rotatingball.gbasm
index 68f5b54..c52e542 100644
--- a/animations/rotatingball.gbasm
+++ b/animations/rotatingball.gbasm
@@ -77,7 +77,7 @@ Rotating_Ball_Animation:
LD A, (DE)
ADD B
LD (HL+), A
- LD A, $64
+ LD A, $vram_animation_index+4
LD (HL+), A
LD A, $00
LD (HL+), A
diff --git a/animations/sparkles.gbasm b/animations/sparkles.gbasm
index fe9c8ae..9f9c04a 100644
--- a/animations/sparkles.gbasm
+++ b/animations/sparkles.gbasm
@@ -68,7 +68,7 @@ Sparkle_Animation:
SRA A
SRA A
AND $02
- ADD $60
+ ADD $vram_animation_index
LD (HL+), A
LD A, $00
@@ -86,7 +86,7 @@ Sparkle_Animation:
SRA A
SRA A
AND $02
- ADD $60
+ ADD $vram_animation_index
LD (HL+), A
LD A, $00