diff options
| author | Paweł Kołodziejski | 2002-10-23 06:48:10 +0000 | 
|---|---|---|
| committer | Paweł Kołodziejski | 2002-10-23 06:48:10 +0000 | 
| commit | 99ec620c587b46912686bd02f67843a29f231587 (patch) | |
| tree | a695c69100d1bd400e7cf4a846136f8e52780899 | |
| parent | 500be1e535298a734adc9c335bb533fc6a915dfe (diff) | |
| download | scummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.tar.gz scummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.tar.bz2 scummvm-rg350-99ec620c587b46912686bd02f67843a29f231587.zip  | |
changing warnings to debug level 2
svn-id: r5273
| -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 {  | 
