mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-26 11:37:12 +00:00
Check if the local was not found, just for sure
This commit is contained in:
parent
7dff8d8fe2
commit
97d8cc0efe
@ -240,6 +240,10 @@ namespace MWScript
|
||||
char type = declarations.getType (iter->first);
|
||||
int index2 = declarations.getIndex (iter->first);
|
||||
|
||||
// silently ignore locals that don't exist anymore
|
||||
if (type == ' ' || index2 == -1)
|
||||
continue;
|
||||
|
||||
try
|
||||
{
|
||||
switch (type)
|
||||
@ -247,8 +251,6 @@ namespace MWScript
|
||||
case 's': mShorts.at (index2) = iter->second.getInteger(); break;
|
||||
case 'l': mLongs.at (index2) = iter->second.getInteger(); break;
|
||||
case 'f': mFloats.at (index2) = iter->second.getFloat(); break;
|
||||
|
||||
// silently ignore locals that don't exist anymore
|
||||
}
|
||||
}
|
||||
catch (...)
|
||||
|
Loading…
x
Reference in New Issue
Block a user