2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Minor fixes

This commit is contained in:
2019-09-29 08:17:01 -07:00
parent 7fd54effc9
commit 6b56f2e6a4
4 changed files with 5 additions and 4 deletions

View File

@@ -415,6 +415,7 @@ bool CVar::fromLiteralToType(std::string_view val) {
if (!safeToModify(m_type) || !isValidInput(val))
return false;
m_value = val;
setModified();
return true;
}