1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

LocalScripts: initialize mIter

This commit is contained in:
scrawl 2015-12-29 15:22:19 +01:00
parent 7f7e8c63bf
commit 6fde02ea42

View File

@ -61,7 +61,10 @@ namespace
}
MWWorld::LocalScripts::LocalScripts (const MWWorld::ESMStore& store) : mStore (store) {}
MWWorld::LocalScripts::LocalScripts (const MWWorld::ESMStore& store) : mStore (store)
{
mIter = mScripts.end();
}
void MWWorld::LocalScripts::setIgnore (const ConstPtr& ptr)
{