aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-10-23 06:48:10 +0000
committerPaweł Kołodziejski2002-10-23 06:48:10 +0000
commit99ec620c587b46912686bd02f67843a29f231587 (patch)
treea695c69100d1bd400e7cf4a846136f8e52780899 /sound/mixer.cpp
parent500be1e535298a734adc9c335bb533fc6a915dfe (diff)
downloadscummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.tar.gz
scummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.tar.bz2
scummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.zip
changing warnings to debug level 2
svn-id: r5273
Diffstat (limited to 'sound/mixer.cpp')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 812494a956..c742fb153e 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -53,7 +53,7 @@ int SoundMixer::append(int index, void * sound, uint32 size, uint rate, byte fla
Channel * chan = _channels[index];
if (!chan) {
- warning("Trying to stream to an unexistant streamer : %d", index);
+ debug(2, "Trying to stream to an unexistant streamer : %d", index);
playStream(NULL, index, sound, size, rate, flags);
chan = _channels[index];
} else {