mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 08:06:40 +00:00
Merge branch 'dial_early' into 'master'
Add an early out to dialogue loading to match Morrowind.exe behaviour Closes #7080 See merge request OpenMW/openmw!2524
This commit is contained in:
commit
199f4ccae4
1 changed files with 8 additions and 2 deletions
|
@ -87,8 +87,14 @@ namespace ESM
|
||||||
if (lookup != mLookup.end())
|
if (lookup != mLookup.end())
|
||||||
{
|
{
|
||||||
auto it = lookup->second.first;
|
auto it = lookup->second.first;
|
||||||
// Since the new version of this record may have changed the next/prev linked list connection, we need to
|
if (it->mPrev == info.mPrev)
|
||||||
// re-insert the record
|
{
|
||||||
|
*it = info;
|
||||||
|
lookup->second.second = isDeleted;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Since the new version of this record has a different prev linked list connection, we need to re-insert
|
||||||
|
// the record
|
||||||
mInfo.erase(it);
|
mInfo.erase(it);
|
||||||
mLookup.erase(lookup);
|
mLookup.erase(lookup);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue