aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_parse.c
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-07 14:41:21 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-07 14:41:21 +0000
commit1578ade96332b449ae175385c7dbb1782740bc81 (patch)
tree01c0945ad1203bbb10cebfedb3ad653019452c8f /code/client/cl_parse.c
parente9f14bee6055b9a52b44074452f7e37b7f901ca9 (diff)
downloadioquake3-aero-1578ade96332b449ae175385c7dbb1782740bc81.tar.gz
ioquake3-aero-1578ade96332b449ae175385c7dbb1782740bc81.zip
VoIP: changed debug output filenames.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1376 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_parse.c')
-rw-r--r--code/client/cl_parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/cl_parse.c b/code/client/cl_parse.c
index b00e861..27607e0 100644
--- a/code/client/cl_parse.c
+++ b/code/client/cl_parse.c
@@ -770,10 +770,10 @@ void CL_ParseVoip ( msg_t *msg ) {
#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