[Scummvm-cvs-logs] CVS: scummvm/sound mixer.cpp,1.33,1.34

Pawel Kolodziejski aquadran at users.sourceforge.net
Sun Mar 30 08:55:02 CEST 2003


Update of /cvsroot/scummvm/scummvm/sound
In directory sc8-pr-cvs1:/tmp/cvs-serv2175/sound

Modified Files:
	mixer.cpp 
Log Message:
changed messages from warning to debug

Index: mixer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/mixer.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- mixer.cpp	18 Mar 2003 21:46:36 -0000	1.33
+++ mixer.cpp	30 Mar 2003 16:54:03 -0000	1.34
@@ -653,14 +653,14 @@
 		uint32 new_size = len - size_to_end_of_buffer; 
 		new_end = _ptr + new_size;
 		if ((_endOfData < cur_pos) || (new_end >= cur_pos)) {
-			warning("Mixer full... Trying to not break too much ");
+			debug(2, "Mixer full... Trying to not break too much ");
 			return;
 		}
 		memcpy(_endOfData, (byte*)data, size_to_end_of_buffer);
 		memcpy(_ptr, (byte *)data + size_to_end_of_buffer, new_size);
 	} else {
 		if ((_endOfData < cur_pos) && (new_end >= cur_pos)) {
-			warning("Mixer full... Trying to not break too much ");
+			debug(2, "Mixer full... Trying to not break too much ");
 			return;
 		}
 		memcpy(_endOfData, data, len);





More information about the Scummvm-git-logs mailing list