summaryrefslogtreecommitdiff
path: root/src/d/d_message.cpp
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-06-04 23:47:43 +0200
committerrobojumper <robojumper@gmail.com>2025-06-04 23:47:43 +0200
commit35ae04fdf94b0210446ccdebef2d66171095a124 (patch)
tree64303d75e9fcffdc1af80182362a29d4c80c7a78 /src/d/d_message.cpp
parente9935e62330417c89601d11c5f92d6a11bc18926 (diff)
Refactoring
Diffstat (limited to 'src/d/d_message.cpp')
-rw-r--r--src/d/d_message.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_message.cpp b/src/d/d_message.cpp
index 83add314..5340403e 100644
--- a/src/d/d_message.cpp
+++ b/src/d/d_message.cpp
@@ -22,6 +22,7 @@
#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 "egg/core/eggHeap.h"
#include "f/f_base.h"
#include "f/f_profile.h"
@@ -38,7 +39,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"
@@ -216,7 +216,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;
}
}