aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-03-30 16:54:03 +0000
committerPaweł Kołodziejski2003-03-30 16:54:03 +0000
commit7edc0abd5b8ac160133e4e9db0b73d966f084553 (patch)
tree65ec68f6c3a2e1e7776637e5f9a4b06188aaeb96 /sound
parentee7ca9e8914b1bcfa45b7981d16ff5bfc14850db (diff)
downloadscummvm-rg350-7edc0abd5b8ac160133e4e9db0b73d966f084553.tar.gz
scummvm-rg350-7edc0abd5b8ac160133e4e9db0b73d966f084553.tar.bz2
scummvm-rg350-7edc0abd5b8ac160133e4e9db0b73d966f084553.zip
changed messages from warning to debug
svn-id: r6888
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index e518233c76..1d4ebde0b8 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -653,14 +653,14 @@ void SoundMixer::ChannelStream::append(void *data, uint32 len) {
uint32 new_size = len - size_to_end_of_buffer;
new_end = _ptr + new_size;
if ((_endOfData < cur_pos) || (new_end >= cur_pos)) {
- warning("Mixer full... Trying to not break too much ");
+ debug(2, "Mixer full... Trying to not break too much ");
return;
}
memcpy(_endOfData, (byte*)data, size_to_end_of_buffer);
memcpy(_ptr, (byte *)data + size_to_end_of_buffer, new_size);
} else {
if ((_endOfData < cur_pos) && (new_end >= cur_pos)) {
- warning("Mixer full... Trying to not break too much ");
+ debug(2, "Mixer full... Trying to not break too much ");
return;
}
memcpy(_endOfData, data, len);