mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 22:01:50 +00:00
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:
parent
0f5a9b0a04
commit
0d9f13a32e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue