r1376 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jun 7 10:41:21 EDT 2008


Author: icculus
Date: 2008-06-07 10:41:21 -0400 (Sat, 07 Jun 2008)
New Revision: 1376

Modified:
   trunk/code/client/cl_parse.c
Log:
VoIP: changed debug output filenames.


Modified: trunk/code/client/cl_parse.c
===================================================================
--- trunk/code/client/cl_parse.c	2008-06-07 14:40:59 UTC (rev 1375)
+++ trunk/code/client/cl_parse.c	2008-06-07 14:41:21 UTC (rev 1376)
@@ -770,10 +770,10 @@
 
 		#if 0
 		static FILE *encio = NULL;
-		if (encio == NULL) encio = fopen("incoming-encoded.bin", "wb");
+		if (encio == NULL) encio = fopen("voip-incoming-encoded.bin", "wb");
 		if (encio != NULL) { fwrite(encoded, len, 1, encio); fflush(encio); }
 		static FILE *decio = NULL;
-		if (decio == NULL) decio = fopen("incoming-decoded.bin", "wb");
+		if (decio == NULL) decio = fopen("voip-incoming-decoded.bin", "wb");
 		if (decio != NULL) { fwrite(decoded+written, clc.speexFrameSize*2, 1, decio); fflush(decio); }
 		#endif
 




More information about the quake3-commits mailing list