diff options
author | Astatin <[email protected]> | 2025-08-22 17:49:29 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-08-22 17:49:29 +0200 |
commit | 76be4685a3270ba15a14439ef8265aa82efd8218 (patch) | |
tree | c4e39c20715afe0acaecc46a79ff906c2176267b /music | |
parent | 2695e4c42c4bd8007803cf674384a8a34bcd78ef (diff) |
Fix bug sound effect & bug health underflow
Diffstat (limited to 'music')
-rw-r--r-- | music/soundeffects/bite.gbasm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/music/soundeffects/bite.gbasm b/music/soundeffects/bite.gbasm index 3ac67a3..46e49c5 100644 --- a/music/soundeffects/bite.gbasm +++ b/music/soundeffects/bite.gbasm @@ -52,6 +52,8 @@ _sound_effect_Bite: .RET_WAIT_NEXT_FRAME + LD A, $80 + LD ($19), A LD A, $3f LD ($16), A LD A, $a2 @@ -59,7 +61,7 @@ _sound_effect_Bite: .CHANNEL_2_SOUND_EFFECT_LOOP =_sound_effect_Bite_slide_data, =_sound_effect_Bite_slide_data.end - LD A, $08 + LD A, $00 LD ($17), A LD A, $mem_sound_flags |