summaryrefslogtreecommitdiff
path: root/src/d/d_message.cpp
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2025-06-08 12:54:43 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2025-06-08 12:54:43 -0400
commit5ecc9708a2c2517dcc12245c38deb6c50b55d555 (patch)
treebd4a4b2ad9fbd4174623b589ddc98075748eee5e /src/d/d_message.cpp
parent3c364000e91601da2d20976794d8c4b95820515e (diff)
parent5f65ed3866d88973965ca6bd1c3750877d4fd2d7 (diff)
Merge remote-tracking branch 'upstream/main' into blurpalette_mgr
Diffstat (limited to 'src/d/d_message.cpp')
-rw-r--r--src/d/d_message.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/d/d_message.cpp b/src/d/d_message.cpp
index 8b8ffdfe..ba09d084 100644
--- a/src/d/d_message.cpp
+++ b/src/d/d_message.cpp
@@ -23,6 +23,8 @@
#include "d/lyt/d_lyt_mini_game.h"
#include "d/lyt/meter/d_lyt_meter.h"
#include "d/lyt/msg_window/d_lyt_msg_window.h"
+#include "d/snd/d_snd_small_effect_mgr.h"
+#include "d/snd/d_snd_source_mgr.h"
#include "egg/core/eggHeap.h"
#include "f/f_base.h"
#include "f/f_profile.h"
@@ -38,7 +40,6 @@
#include "toBeSorted/file_manager.h"
#include "toBeSorted/minigame_mgr.h"
#include "toBeSorted/music_mgrs.h"
-#include "toBeSorted/small_sound_mgr.h"
#include "toBeSorted/unk_save_time.h"
#include "rvl/OS.h"
@@ -199,7 +200,7 @@ void dFlow_c::playSound(u32 params) {
return;
}
if (params >= 100) {
- fn_803858D0(ENEMY_BGM_RELATED_MGR);
+ dSndSourceMgr_c::GetInstance()->playFlowSound(params);
return;
}
@@ -217,7 +218,7 @@ void dFlow_c::playSound(u32 params) {
switch (sSoundDefs[idx].mSoundMgr) {
case 0: AnotherSoundMgr__playSound(FANFARE_SOUND_MGR, sSoundDefs[idx].mSoundId); break;
- case 1: SmallSoundManager::GetInstance()->playSound(sSoundDefs[idx].mSoundId); break;
+ case 1: dSndSmallEffectMgr_c::GetInstance()->playSound(sSoundDefs[idx].mSoundId); break;
}
}