aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-11-15 18:47:33 +0000
committerPaweł Kołodziejski2002-11-15 18:47:33 +0000
commit114d607b26c80bdd1b81de6813bcff76f8fc2705 (patch)
tree1ed7b466d224033709c229a50ac38929337ac3a6 /scumm/smush
parentceb1102300ef27654b2437563a28c5313b395d7c (diff)
downloadscummvm-rg350-114d607b26c80bdd1b81de6813bcff76f8fc2705.tar.gz
scummvm-rg350-114d607b26c80bdd1b81de6813bcff76f8fc2705.tar.bz2
scummvm-rg350-114d607b26c80bdd1b81de6813bcff76f8fc2705.zip
changed warnings to debug messages
svn-id: r5574
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/imuse_channel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/smush/imuse_channel.cpp b/scumm/smush/imuse_channel.cpp
index df870696a4..ef9dfceede 100644
--- a/scumm/smush/imuse_channel.cpp
+++ b/scumm/smush/imuse_channel.cpp
@@ -169,7 +169,7 @@ void ImuseChannel::decode() {
_tbufferSize = remaining_size;
_sbufferSize -= remaining_size;
} else {
- warning("impossible ! : %p, %d, %d, %p(%d), %p(%d, %d)",
+ debug(2, "impossible ! : %p, %d, %d, %p(%d), %p(%d, %d)",
this, _dataSize, _inData, _tbuffer, _tbufferSize, _sbuffer, _sbufferSize, _srbufferSize);
byte * old = _tbuffer;
int new_size = remaining_size + _tbufferSize;
@@ -233,7 +233,7 @@ bool ImuseChannel::handleSubTags(int32 & offset) {
else reqsize = 3;
}
if((size % reqsize) != 0) {
- warning("Invalid iMUS sound data size : (%d %% %d) != 0, correcting...", size, reqsize);
+ debug(2, "Invalid iMUS sound data size : (%d %% %d) != 0, correcting...", size, reqsize);
size += 3 - (size % reqsize);
}
}