aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/imuse_channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/smush/imuse_channel.cpp')
-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);
}
}