mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-22 11:31:16 +00:00
Small change that'll help diagnosing mvd playback errors...
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@424 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2b4346e954
commit
0f7ea1c673
1 changed files with 2 additions and 2 deletions
|
@ -1793,7 +1793,7 @@ void NPP_MVDWriteByte(qbyte data, client_t *to, int broadcast) //replacement wri
|
||||||
protocollen = 9;
|
protocollen = 9;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
Con_Printf("bad protocol %i\n", (int)data);
|
Con_Printf("mvd: bad protocol %i\n", (int)data);
|
||||||
Con_Printf("(last was %i)\n", (int)majortype);
|
Con_Printf("(last was %i)\n", (int)majortype);
|
||||||
protocollen = sizeof(buffer);
|
protocollen = sizeof(buffer);
|
||||||
net_message.cursize=0;
|
net_message.cursize=0;
|
||||||
|
@ -2081,7 +2081,7 @@ void NPP_MVDWriteByte(qbyte data, client_t *to, int broadcast) //replacement wri
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
Con_Printf("bad protocol %i\n", (int)data);
|
Con_Printf("mvd: bad protocol %i\n", (int)data);
|
||||||
protocollen = sizeof(buffer);
|
protocollen = sizeof(buffer);
|
||||||
net_message.cursize=0;
|
net_message.cursize=0;
|
||||||
data = svc_nop;
|
data = svc_nop;
|
||||||
|
|
Loading…
Reference in a new issue