[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.70,1.71

Max Horn fingolfin at users.sourceforge.net
Mon Jul 14 13:46:22 CEST 2003


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1:/tmp/cvs-serv28077

Modified Files:
	mixer.cpp 
Log Message:
oops

Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- mixer.cpp	14 Jul 2003 20:09:14 -0000	1.70
+++ mixer.cpp	14 Jul 2003 20:45:33 -0000	1.71
@@ -316,7 +316,6 @@
 
 void SoundMixer::stopAll() {
 	StackLock lock(_mutex);
-printf("->SoundMixer::stopAll()\n");
 	for (int i = 0; i != NUM_CHANNELS; i++)
 		if (_channels[i])
 			_channels[i]->destroy();
@@ -329,7 +328,6 @@
 	}
 
 	StackLock lock(_mutex);
-printf("->SoundMixer::stop(%d)\n", index);
 	if (_channels[index])
 		_channels[index]->destroy();
 }
@@ -357,7 +355,6 @@
 		return;
 	}
 
-printf("->SoundMixer::stopHandle(%d)\n", index);
 	if (_channels[index])
 		_channels[index]->destroy();
 }





More information about the Scummvm-git-logs mailing list