mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 12:01:25 +00:00
client_t->netchan.netprim wasn't getting updated properly.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5453 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
21186f9c11
commit
1282e487e2
1 changed files with 5 additions and 2 deletions
|
@ -728,8 +728,11 @@ void SV_SetupNetworkBuffers(qboolean bigcoords)
|
|||
//FIXME: this should be part of sv_new_f or something instead, so that any angles sent by clients won't be invalid
|
||||
for (i = 0; i < svs.allocated_client_slots; i++)
|
||||
{
|
||||
svs.clients[i].datagram.prim = svs.netprim;
|
||||
svs.clients[i].netchan.message.prim = svs.netprim;
|
||||
svs.clients[i].netchan.netprim = svs.netprim;
|
||||
|
||||
//make sure those are kept up to date too.
|
||||
svs.clients[i].datagram.prim =
|
||||
svs.clients[i].netchan.message.prim = svs.clients[i].netchan.netprim;
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue