mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-16 16:20:53 +00:00
Fix coverity warning in esm3/globalscript.cpp
This commit is contained in:
parent
a8ed567177
commit
f5ddffa087
@ -19,7 +19,11 @@ namespace ESM
|
||||
mTargetId = esm.getHNORefId("TARG");
|
||||
if (esm.peekNextSub("FRMR"))
|
||||
mTargetRef = esm.getFormId(true, "FRMR");
|
||||
esm.applyContentFileMapping(mTargetRef);
|
||||
if (!esm.applyContentFileMapping(mTargetRef))
|
||||
{
|
||||
mTargetId = ESM::RefId();
|
||||
mTargetRef = ESM::FormId();
|
||||
}
|
||||
}
|
||||
|
||||
void GlobalScript::save(ESMWriter& esm) const
|
||||
|
Loading…
x
Reference in New Issue
Block a user