diff options
Diffstat (limited to '')
-rw-r--r-- | src/bossThwompaDomp.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bossThwompaDomp.cpp b/src/bossThwompaDomp.cpp index 1950ced..18ea570 100644 --- a/src/bossThwompaDomp.cpp +++ b/src/bossThwompaDomp.cpp @@ -443,14 +443,16 @@ int daEnMegaDosun_c::onDelete() { if (this->timer == 0) { - PlaySound(this, SE_EMY_BIG_DOSSUN_DEAD); + nw4r::snd::SoundHandle handle; + PlaySoundWithFunctionB4(SoundRelatedClass, &handle, SE_EMY_BIG_DOSSUN_DEAD, 1); SpawnEffect("Wm_mr_stockitemuse_b", 0, &this->pos, &(S16Vec){0,0,0}, &(Vec){2.0, 2.0, 2.0}); SpawnEffect("Wm_mr_stockitemuse_c", 0, &this->pos, &(S16Vec){0,0,0}, &(Vec){2.0, 2.0, 2.0}); } if (this->timer == 60) { - PlaySound(this, STRM_BGM_SHIRO_BOSS_CLEAR); + nw4r::snd::SoundHandle handle; + PlaySoundWithFunctionB4(SoundRelatedClass, &handle, STRM_BGM_SHIRO_BOSS_CLEAR, 1); MakeMarioEnterDemoMode(); } |