mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 09:10:54 +00:00
Allow ints to save too, in case anyone tries using them, ever.
This commit is contained in:
parent
df3db3b821
commit
d02c4e010c
1 changed files with 1 additions and 1 deletions
|
@ -638,7 +638,7 @@ void ED_WriteGlobals (FILE *f)
|
||||||
continue;
|
continue;
|
||||||
type &= ~DEF_SAVEGLOBAL;
|
type &= ~DEF_SAVEGLOBAL;
|
||||||
|
|
||||||
if (type != ev_string && type != ev_float && type != ev_entity)
|
if (type != ev_string && type != ev_float && type != ev_ext_integer && type != ev_entity)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
name = PR_GetString(def->s_name);
|
name = PR_GetString(def->s_name);
|
||||||
|
|
Loading…
Reference in a new issue