Fixes error on reading compiled scripts.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-03-07 19:35:38 +01:00
parent 20f90222d1
commit 090b77ff2b
2 changed files with 2 additions and 1 deletions

View File

@@ -381,7 +381,7 @@ void AngelScriptResolver::InitializeByteCode(
for (const auto& val : innerDb.second) {
auto decl = val.second;
auto type = objectTypes[decl];
_itemUseTypes[val.first] = type;
_itemUseTypes.Set(val.first, type);
}
}
}