From c6752cccf5186fb04c97e2bb4a64c52fc9447073 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 28 Feb 2004 12:58:13 +0000 Subject: renamed more OSystem methods to follow our naming scheme; renamed NewGuiColor to OverlayColor; fixed some calls to error() in the SDL backend svn-id: r13087 --- sound/mixer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound') 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) { -- cgit v1.2.3