diff options
author | Max Horn | 2003-07-14 20:45:33 +0000 |
---|---|---|
committer | Max Horn | 2003-07-14 20:45:33 +0000 |
commit | d31942c898435b3164aa4dbc630a447b6c3cf6a5 (patch) | |
tree | 5f7355aaad471ed749488f7e5f423a81fed1cda2 | |
parent | 33e6989944f23e2fd7d556a0b6b99c78ac5ac126 (diff) | |
download | scummvm-rg350-d31942c898435b3164aa4dbc630a447b6c3cf6a5.tar.gz scummvm-rg350-d31942c898435b3164aa4dbc630a447b6c3cf6a5.tar.bz2 scummvm-rg350-d31942c898435b3164aa4dbc630a447b6c3cf6a5.zip |
oops
svn-id: r9023
-rw-r--r-- | sound/mixer.cpp | 3 |
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(); } |