mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-01 01:39:41 +00:00
fixes assertion (#3215)
This PR fixes an assertion introduced by #3211. For some reason my build originally did not contain assertions despite passing `DEBUG` into cmake, but after deleting `CMakeCache.txt` I have now hit the assertion @glassmancody reported as well.
This commit is contained in:
parent
2d3c6faec4
commit
f684c1da52
1 changed files with 1 additions and 1 deletions
|
@ -42,8 +42,8 @@ void EsmLoader::load(const boost::filesystem::path& filepath, int& index)
|
||||||
ESM::ESMReader lEsm;
|
ESM::ESMReader lEsm;
|
||||||
lEsm.setEncoder(mEncoder);
|
lEsm.setEncoder(mEncoder);
|
||||||
lEsm.setIndex(index);
|
lEsm.setIndex(index);
|
||||||
lEsm.resolveParentFileIndices(mEsm);
|
|
||||||
lEsm.open(filepath.string());
|
lEsm.open(filepath.string());
|
||||||
|
lEsm.resolveParentFileIndices(mEsm);
|
||||||
mEsm[index] = lEsm;
|
mEsm[index] = lEsm;
|
||||||
mStore.load(mEsm[index], &mListener);
|
mStore.load(mEsm[index], &mListener);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue