mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 20:53:52 +00:00
Fix typo.
This commit is contained in:
parent
2e2d6e04fe
commit
e668b35b02
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ void ESM::RefNum::save (ESMWriter &esm, bool wide, const std::string& tag) const
|
|||
esm.writeHNT (tag, *this, 8);
|
||||
else
|
||||
{
|
||||
int refNum = (mIndex & 0xffffff) | ((hasContentFile() ? mContentFile<<24 : 0xff));
|
||||
int refNum = (mIndex & 0xffffff) | ((hasContentFile() ? mContentFile : 0xff)<<24);
|
||||
|
||||
esm.writeHNT (tag, refNum, 4);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue