mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-06 19:04:08 +00:00
some CAutomobile
This commit is contained in:
parent
dd162c3aa0
commit
c1e13177a1
14 changed files with 445 additions and 194 deletions
|
@ -81,7 +81,7 @@ CEntity::CEntity(void)
|
|||
m_flagE2 = false;
|
||||
bOffscreen = false;
|
||||
bIsStaticWaitingForCollision = false;
|
||||
m_flagE10 = false;
|
||||
bDontStream = false;
|
||||
bUnderwater = false;
|
||||
bHasPreRenderEffects = false;
|
||||
|
||||
|
@ -1083,7 +1083,7 @@ CEntity::SaveEntityFlags(uint8*& buf)
|
|||
if (m_flagE2) tmp |= BIT(9);
|
||||
if (bOffscreen) tmp |= BIT(10);
|
||||
if (bIsStaticWaitingForCollision) tmp |= BIT(11);
|
||||
if (m_flagE10) tmp |= BIT(12);
|
||||
if (bDontStream) tmp |= BIT(12);
|
||||
if (bUnderwater) tmp |= BIT(13);
|
||||
if (bHasPreRenderEffects) tmp |= BIT(14);
|
||||
|
||||
|
@ -1139,7 +1139,7 @@ CEntity::LoadEntityFlags(uint8*& buf)
|
|||
m_flagE2 = !!(tmp & BIT(9));
|
||||
bOffscreen = !!(tmp & BIT(10));
|
||||
bIsStaticWaitingForCollision = !!(tmp & BIT(11));
|
||||
m_flagE10 = !!(tmp & BIT(12));
|
||||
bDontStream = !!(tmp & BIT(12));
|
||||
bUnderwater = !!(tmp & BIT(13));
|
||||
bHasPreRenderEffects = !!(tmp & BIT(14));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue