mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
Don't list deleted refs in CellStore::foreach
This commit is contained in:
parent
49ea1aae67
commit
a8c838b53a
@ -140,9 +140,12 @@ namespace MWWorld
|
|||||||
{
|
{
|
||||||
for (typename List::List::iterator iter (list.mList.begin()); iter!=list.mList.end();
|
for (typename List::List::iterator iter (list.mList.begin()); iter!=list.mList.end();
|
||||||
++iter)
|
++iter)
|
||||||
|
{
|
||||||
|
if (!iter->mData.getCount())
|
||||||
|
continue;
|
||||||
if (!functor (iter->mRef, iter->mData))
|
if (!functor (iter->mRef, iter->mData))
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user