diff options
author | Astatin <[email protected]> | 2025-08-23 13:17:56 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-08-23 13:17:56 +0200 |
commit | 0904f9d55e4ca41d40a4e79f8cad33bb4ffcc77e (patch) | |
tree | 97390266b53a7ad2f72f47370e94acdf634e5138 /modes | |
parent | 619aeddb8a9f955ab51cecad62540255880187e0 (diff) |
Fix the cancel animation replay but for real this time
Diffstat (limited to 'modes')
-rw-r--r-- | modes/dungeon.gbasm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modes/dungeon.gbasm b/modes/dungeon.gbasm index a06a13f..7922e64 100644 --- a/modes/dungeon.gbasm +++ b/modes/dungeon.gbasm @@ -22,6 +22,9 @@ Update_Animation_Steps: CP $00 JR NZ, =.end + LD A, $00 + LD $mem_bunny_animation, A + LD A, $mem_map_loading_flags RES 3, A SET 1, A @@ -48,8 +51,6 @@ Update_Animation_Steps: LD A, $mem_moving_animation_step CP $00 RET NZ - LD A, $00 - LD $mem_bunny_animation, A LD A, $mem_bunny_health CP $00 RET NZ |