Fix Cvar_Unset not notifying cvar_modifiedFlags

Upstream: JACoders/OpenJK@9a5e9e87ff
This commit is contained in:
Dion Williams 2015-09-07 11:29:15 +01:00
parent 87e0bf6eaf
commit ce2b8db294
1 changed files with 3 additions and 0 deletions

View File

@ -1117,6 +1117,9 @@ cvar_t *Cvar_Unset(cvar_t *cv)
{
cvar_t *next = cv->next;
// note what types of cvars have been modified (userinfo, archive, serverinfo, systeminfo)
cvar_modifiedFlags |= cv->flags;
if(cv->name)
Z_Free(cv->name);
if(cv->string)