aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/mixer.cpp3
1 files changed, 0 insertions, 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();
}