mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-16 15:46:34 +00:00
Typo fix
This commit is contained in:
parent
092d9a4c62
commit
437f22ed72
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace LuaUtil
|
|||
// Find duplicates; only the last occurrence will be used (unless `sMerge` flag is used).
|
||||
// Search for duplicates is case insensitive.
|
||||
std::vector<bool> skip(cfg.mScripts.size(), false);
|
||||
for (int i = 0; i < static_cast<int>(mScripts.size()); ++i)
|
||||
for (int i = 0; i < static_cast<int>(cfg.mScripts.size()); ++i)
|
||||
{
|
||||
const ESM::LuaScriptCfg& script = cfg.mScripts[i];
|
||||
bool global = script.mFlags & ESM::LuaScriptCfg::sGlobal;
|
||||
|
|
Loading…
Reference in a new issue