[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.159,1.160

Max Horn fingolfin at users.sourceforge.net
Sat Feb 28 05:16:04 CET 2004


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32588/sound

Modified Files:
	mixer.cpp 
Log Message:
renamed more OSystem methods to follow our naming scheme; renamed NewGuiColor to OverlayColor; fixed some calls to error() in the SDL backend

Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -d -r1.159 -r1.160
--- mixer.cpp	24 Feb 2004 22:39:41 -0000	1.159
+++ mixer.cpp	28 Feb 2004 12:58:12 -0000	1.160
@@ -105,7 +105,7 @@
 
 SoundMixer::SoundMixer() {
 	_syst = OSystem::instance();
-	_mutex = _syst->create_mutex();
+	_mutex = _syst->createMutex();
 
 	_premixParam = 0;
 	_premixProc = 0;
@@ -130,7 +130,7 @@
 SoundMixer::~SoundMixer() {
 	_syst->clearSoundCallback();
 	stopAll();
-	_syst->delete_mutex(_mutex);
+	_syst->deleteMutex(_mutex);
 }
 
 void SoundMixer::setupPremix(PremixProc *proc, void *param) {





More information about the Scummvm-git-logs mailing list