1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 03:45:32 +00:00

Fix uninitialized QuestStatus in DialInfo (Fixes #1694)

This commit is contained in:
scrawl 2014-08-04 16:42:09 +02:00
parent c6bf9dfbfb
commit 2e7b5fde7c

View file

@ -10,6 +10,9 @@ namespace ESM
void DialInfo::load(ESMReader &esm)
{
mQuestStatus = QS_None;
mFactionLess = false;
mPrev = esm.getHNString("PNAM");
mNext = esm.getHNString("NNAM");
@ -49,7 +52,6 @@ void DialInfo::load(ESMReader &esm)
return;
}
mFactionLess = false;
if (subName.val == REC_FNAM)
{
mFaction = esm.getHString();
@ -104,8 +106,6 @@ void DialInfo::load(ESMReader &esm)
return;
}
mQuestStatus = QS_None;
if (subName.val == REC_QSTN)
mQuestStatus = QS_Name;
else if (subName.val == REC_QSTF)