mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 18:09:50 +00:00
fixed gmst integers
This commit is contained in:
parent
ba4907fbaf
commit
1b19ab6028
1 changed files with 2 additions and 2 deletions
|
@ -156,8 +156,8 @@ void ESM::VariantIntegerData::read (ESMReader& esm, Variant::Format format, VarT
|
|||
}
|
||||
else // GMST
|
||||
{
|
||||
if (type==VT_Int)
|
||||
esm.fail ("unsupported global variable integer type");
|
||||
if (type!=VT_Int)
|
||||
esm.fail ("unsupported gmst variable integer type");
|
||||
|
||||
esm.getHT (mValue);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue