Merge pull request #152 from dionrhys/cvar-unset-notify

Fix Cvar_Unset not notifying cvar_modifiedFlags
This commit is contained in:
Tim Angus 2015-09-07 13:00:30 +01:00
commit 9767a0e790
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)