diff options
| -rw-r--r-- | scumm/imuse.cpp | 6 | ||||
| -rw-r--r-- | sound/mixer.cpp | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 12ea06db17..b23472ead4 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -5657,7 +5657,7 @@ int32 IMuseDigital::doCommand(int a, int b, int c, int d, int e, int f, int g, i  					}  				}  				if (chan == -1) { -					warning("IMuseDigital::doCommand 12,6 sample(%d) not exist in channels", sample); +					debug(2, "IMuseDigital::doCommand 12,6 sample(%d) not exist in channels", sample);  					return 1;  				}  				_channel[chan]._volume = d; @@ -5683,7 +5683,7 @@ int32 IMuseDigital::doCommand(int a, int b, int c, int d, int e, int f, int g, i  					}  				}  				if (chan == -1) { -					warning("IMuseDigital::doCommand 12,7 sample(%d) not exist in channels", sample); +					debug(2, "IMuseDigital::doCommand 12,7 sample(%d) not exist in channels", sample);  					return 1;  				}  				_channel[chan]._volumeRight = d; @@ -5703,7 +5703,7 @@ int32 IMuseDigital::doCommand(int a, int b, int c, int d, int e, int f, int g, i  					}  				}  				if (chan == -1) { -						warning("IMuseDigital::doCommand 14,6 sample %d not exist in channels", sample); +						debug(2, "IMuseDigital::doCommand 14,6 sample %d not exist in channels", sample);  					return 1;  				}  				_channel[chan]._volumeFade = d; 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 { | 
