forked from fte/fteqw
1
0
Fork 0

Less spam.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3666 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2010-11-20 23:47:52 +00:00
parent 540830d955
commit 296a6943e7
2 changed files with 2 additions and 3 deletions

View File

@ -5259,7 +5259,6 @@ void CSQC_Shutdown(void)
{
CSQC_ForgetThreads();
CloseProgs(csqcprogs);
Con_Printf("Closed csqc\n");
}
csqcprogs = NULL;

View File

@ -312,7 +312,7 @@ void S_Voip_Parse(void)
gen = MSG_ReadByte();
seq = MSG_ReadByte();
bytes = MSG_ReadShort();
if (bytes > sizeof(data) || !cl_voip_play.ival || !S_Speex_Init() || (sender & 0xc0))
if (bytes > sizeof(data) || !cl_voip_play.ival || !S_Speex_Init() || (gen & 0xf0))
{
MSG_ReadSkip(bytes);
return;
@ -531,7 +531,7 @@ void S_Voip_Transmit(unsigned char clc, sizebuf_t *buf)
if (outpos && buf->maxsize - buf->cursize >= outpos+4)
{
MSG_WriteByte(buf, clc);
MSG_WriteByte(buf, (s_speex.generation & 0x3f)); /*gonna leave two bits clear here...*/
MSG_WriteByte(buf, (s_speex.generation & 0x0f)); /*gonna leave that nibble clear here... in this version, the client will ignore packets with those bits set. can use them for codec or something*/
MSG_WriteByte(buf, initseq);
MSG_WriteShort(buf, outpos);
SZ_Write(buf, outbuf, outpos);