aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/mixer.cpp')
-rw-r--r--sound/mixer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index afe31813f4..b67b0c782b 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -105,7 +105,7 @@ public:
SoundMixer::SoundMixer() {
_syst = OSystem::instance();
- _mutex = _syst->create_mutex();
+ _mutex = _syst->createMutex();
_premixParam = 0;
_premixProc = 0;
@@ -130,7 +130,7 @@ SoundMixer::SoundMixer() {
SoundMixer::~SoundMixer() {
_syst->clearSoundCallback();
stopAll();
- _syst->delete_mutex(_mutex);
+ _syst->deleteMutex(_mutex);
}
void SoundMixer::setupPremix(PremixProc *proc, void *param) {