mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix a silly edict print bug
This commit is contained in:
parent
6c9de8061b
commit
26c387408c
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ ED_Print (progs_t * pr, edict_t *ed)
|
||||||
type = d->type & ~DEF_SAVEGLOBAL;
|
type = d->type & ~DEF_SAVEGLOBAL;
|
||||||
|
|
||||||
for (j = 0; j < type_size[type]; j++)
|
for (j = 0; j < type_size[type]; j++)
|
||||||
if (((char*)v)[j])
|
if (v[j].int_var)
|
||||||
break;
|
break;
|
||||||
if (j == type_size[type])
|
if (j == type_size[type])
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue