diff options
Diffstat (limited to 'animations/sparkles.gbasm')
-rw-r--r-- | animations/sparkles.gbasm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/animations/sparkles.gbasm b/animations/sparkles.gbasm index 018cf27..166332c 100644 --- a/animations/sparkles.gbasm +++ b/animations/sparkles.gbasm @@ -40,14 +40,14 @@ Sparkle_Animation: LD C, A LD E, (HL) - INC E - LD A, $1f - AND E - LD E, A + DEC E XOR A CP E JP Z, =.End_animation LD (HL), E + LD A, $20 + SUB E + LD E, A .ADD_MOVING_ANIMATION_OFFSET |