1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
This commit is contained in:
Marc Zinnschlag 2012-11-07 19:43:42 +01:00
parent 918316168f
commit c5a6171aab

View File

@ -572,7 +572,6 @@ namespace MWWorld
ESM::Cell *ptr;
if (cell.isExterior()) {
std::pair<int, int> key(cell.getGridX(), cell.getGridY());
DynamicExt::iterator it = mDynamicExt.find(key);
// duplicate insertions are avoided by search(ESM::Cell &)
std::pair<DynamicExt::iterator, bool> result =
@ -582,7 +581,6 @@ namespace MWWorld
mSharedExt.push_back(ptr);
} else {
std::string key = StringUtils::lowerCase(cell.mName);
DynamicInt::iterator it = mDynamicInt.find(key);
// duplicate insertions are avoided by search(ESM::Cell &)
std::pair<DynamicInt::iterator, bool> result =