1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-13 10:13:06 +00:00

Set ESM::Dialogue::mType on blank and skip load

This commit is contained in:
elsid 2023-03-26 16:02:24 +02:00
parent d6c8c54dc5
commit 4716583f3e
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -37,6 +37,7 @@ namespace ESM
else else
{ {
esm.skip(size); esm.skip(size);
mType = Unknown;
} }
break; break;
} }
@ -67,6 +68,7 @@ namespace ESM
void Dialogue::blank() void Dialogue::blank()
{ {
mType = Unknown;
mInfo.clear(); mInfo.clear();
} }