diff options
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 |