From d31942c898435b3164aa4dbc630a447b6c3cf6a5 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 14 Jul 2003 20:45:33 +0000 Subject: oops svn-id: r9023 --- sound/mixer.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sound/mixer.cpp b/sound/mixer.cpp index 3eb1592c11..d552f33917 100644 --- a/sound/mixer.cpp +++ b/sound/mixer.cpp @@ -316,7 +316,6 @@ bool SoundMixer::bindToSystem(OSystem *syst) { 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 @@ void SoundMixer::stop(int index) { } StackLock lock(_mutex); -printf("->SoundMixer::stop(%d)\n", index); if (_channels[index]) _channels[index]->destroy(); } @@ -357,7 +355,6 @@ void SoundMixer::stopHandle(PlayingSoundHandle handle) { return; } -printf("->SoundMixer::stopHandle(%d)\n", index); if (_channels[index]) _channels[index]->destroy(); } -- cgit v1.2.3