q2/q3 clipping fixed (hopefully finally except for bsp objects, that is)
q2 server should work. added support for addative (and things) blends from menu.dat git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1035 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
979df82f05
commit
077fb0d98a
17 changed files with 139 additions and 126 deletions
|
@ -1746,7 +1746,12 @@ void SVC_DirectConnect
|
|||
void SV_ClearClient(client_t *cl)
|
||||
{
|
||||
client_frame_t *frames = cl->frames;
|
||||
char *on, *ot;
|
||||
on = cl->name;
|
||||
ot = cl->team;
|
||||
memset(cl, 0, sizeof(client_t));
|
||||
cl->name = on;
|
||||
cl->team = ot;
|
||||
cl->frames = frames;
|
||||
if (frames)
|
||||
memset(frames, 0, sizeof(client_frame_t)*UPDATE_BACKUP);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue