diff options
author | Paweł Kołodziejski | 2002-11-15 18:47:33 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2002-11-15 18:47:33 +0000 |
commit | 114d607b26c80bdd1b81de6813bcff76f8fc2705 (patch) | |
tree | 1ed7b466d224033709c229a50ac38929337ac3a6 /scumm | |
parent | ceb1102300ef27654b2437563a28c5313b395d7c (diff) | |
download | scummvm-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')
-rw-r--r-- | scumm/smush/imuse_channel.cpp | 4 |
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); } } |