aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJames Brown2002-04-27 04:33:24 +0000
committerJames Brown2002-04-27 04:33:24 +0000
commit6ac9551e815b7566ff13d02d1800286290109074 (patch)
tree4112eedff012d5295d737bae1f65ed7f57f0edbd /sound
parentd0b9677f5d29e5ec601c9831987a524c9a824503 (diff)
downloadscummvm-rg350-6ac9551e815b7566ff13d02d1800286290109074.tar.gz
scummvm-rg350-6ac9551e815b7566ff13d02d1800286290109074.tar.bz2
scummvm-rg350-6ac9551e815b7566ff13d02d1800286290109074.zip
Remove getpid() debug calls from mixer.cpp - not all platforms support this
function. svn-id: r4100
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 3f2a957911..d73ad86958 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -346,7 +346,7 @@ SoundMixer::Channel_MP3_CDMUSIC::Channel_MP3_CDMUSIC(SoundMixer *mixer, FILE* fi
mad_frame_init(&_frame);
mad_synth_init(&_synth);
- debug(1, "CRE %d", getpid());
+ //debug(1, "CRE %d", getpid());
}
void SoundMixer::Channel_MP3_CDMUSIC::mix(int16 *data, uint len) {
@@ -358,7 +358,7 @@ void SoundMixer::Channel_MP3_CDMUSIC::mix(int16 *data, uint len) {
return;
}
- debug(1, "MIX %d", getpid());
+ //debug(1, "MIX %d", getpid());
if (!_initialized) {
int skip_loop;
@@ -458,7 +458,7 @@ void SoundMixer::Channel_MP3_CDMUSIC::real_destroy() {
mad_frame_finish(&_frame);
mad_stream_finish(&_stream);
- debug(1, "DES %d", getpid());
+ //debug(1, "DES %d", getpid());
delete this;
}