That's just one of gcc's warnings gone...

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@218 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-09-15 03:06:20 +00:00
parent 0f5a9b0a04
commit 0d9f13a32e

View file

@ -1287,7 +1287,7 @@ void SVQ2_AreaEdicts_r (areanode_t *node)
int i;
SV_ClearWorld();
check = ge->edicts;
for (i = 0; i < ge->num_edicts; i++, (char *)check = (char *)check + ge->edict_size)
for (i = 0; i < ge->num_edicts; i++, check = (q2edict_t *)((char *)check + ge->edict_size))
memset(&check->area, 0, sizeof(check->area));
Con_Printf ("SV_AreaEdicts: Bad links\n");
return;