mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-01-31 21:10:44 +00:00
Fix Cvar_Unset not notifying cvar_modifiedFlags
Upstream: JACoders/OpenJK@9a5e9e87ff
This commit is contained in:
parent
87e0bf6eaf
commit
ce2b8db294
1 changed files with 3 additions and 0 deletions
|
@ -1117,6 +1117,9 @@ cvar_t *Cvar_Unset(cvar_t *cv)
|
||||||
{
|
{
|
||||||
cvar_t *next = cv->next;
|
cvar_t *next = cv->next;
|
||||||
|
|
||||||
|
// note what types of cvars have been modified (userinfo, archive, serverinfo, systeminfo)
|
||||||
|
cvar_modifiedFlags |= cv->flags;
|
||||||
|
|
||||||
if(cv->name)
|
if(cv->name)
|
||||||
Z_Free(cv->name);
|
Z_Free(cv->name);
|
||||||
if(cv->string)
|
if(cv->string)
|
||||||
|
|
Loading…
Reference in a new issue