This commit is contained in:
Jack Andersen 2015-12-03 15:34:42 -10:00
commit ee40f5217f
1 changed files with 5 additions and 1 deletions

View File

@ -123,7 +123,11 @@ void CVarManager::deserialize(CVar* cvar)
return;
}
cvar->m_value = tmp.m_value;
if (cvar->m_value != tmp.m_value)
{
cvar->m_value = tmp.m_value;
cvar->m_flags |= CVar::EFlags::Modified;
}
}
}
}