mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-22 23:30:01 +00:00
minor fixes
This commit is contained in:
parent
3f26250d73
commit
e099aaaa6b
|
@ -21,6 +21,10 @@ CPhysical::CPhysical(void)
|
|||
{
|
||||
int i;
|
||||
|
||||
#ifdef FIX_BUGS
|
||||
m_nLastTimeCollided = 0;
|
||||
#endif
|
||||
|
||||
m_fForceMultiplier = 1.0f;
|
||||
m_vecMoveSpeed = CVector(0.0f, 0.0f, 0.0f);
|
||||
m_vecTurnSpeed = CVector(0.0f, 0.0f, 0.0f);
|
||||
|
|
|
@ -243,6 +243,9 @@ CPed::CPed(uint32 pedType) : m_pedIK(this)
|
|||
m_nPedState = PED_IDLE;
|
||||
m_nLastPedState = PED_NONE;
|
||||
m_nMoveState = PEDMOVE_STILL;
|
||||
#ifdef FIX_BUGS
|
||||
m_nPrevMoveState = PEDMOVE_NONE;
|
||||
#endif
|
||||
m_nStoredMoveState = PEDMOVE_NONE;
|
||||
m_pFire = nil;
|
||||
m_pPointGunAt = nil;
|
||||
|
|
|
@ -99,7 +99,7 @@ CVehicle::CVehicle(uint8 CreatedBy)
|
|||
m_numPedsUseItAsCover = 0;
|
||||
bIsCarParkVehicle = false;
|
||||
bHasAlreadyBeenRecorded = false;
|
||||
m_bSirenOrAlarm = 0;
|
||||
m_bSirenOrAlarm = false;
|
||||
m_nCarHornTimer = 0;
|
||||
m_nCarHornPattern = 0;
|
||||
m_nAlarmState = 0;
|
||||
|
|
Loading…
Reference in a new issue