mirror of
https://github.com/halpz/re3.git
synced 2025-07-25 15:22:47 +00:00
Merge pull request #1149 from withmorten/saves
finish COMPATIBLE_SAVES and FIX_INCOMPATIBLE_SAVES
This commit is contained in:
@ -732,7 +732,7 @@ CEntity::SaveEntityFlags(uint8*& buf)
|
||||
if (bZoneCulled) tmp |= BIT(30);
|
||||
if (bZoneCulled2) tmp |= BIT(31);
|
||||
|
||||
WriteSaveBuf<uint32>(buf, tmp);
|
||||
WriteSaveBuf(buf, tmp);
|
||||
|
||||
tmp = 0;
|
||||
|
||||
@ -748,7 +748,7 @@ CEntity::SaveEntityFlags(uint8*& buf)
|
||||
if (bDistanceFade) tmp |= BIT(8);
|
||||
if (m_flagE2) tmp |= BIT(9);
|
||||
|
||||
WriteSaveBuf<uint32>(buf, tmp);
|
||||
WriteSaveBuf(buf, tmp);
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user