Remove redundant part of 'Sanitizer fixes 2'

This commit is contained in:
erorcun 2021-07-03 01:53:43 +03:00
parent a8549e86a7
commit 51042e15aa
1 changed files with 2 additions and 10 deletions

View File

@ -6121,15 +6121,9 @@ CPed::SetEvasiveStep(CPhysical *reason, uint8 animType)
}
}
#ifdef FIX_BUGS
#define IS_RCBANDIT (reason->IsVehicle() && reason->GetModelIndex() == MI_RCBANDIT)
#else
#define IS_RCBANDIT (reason->GetModelIndex() == MI_RCBANDIT)
#endif
if (neededTurn <= DEGTORAD(90.0f) || IS_RCBANDIT || vehPressedHorn || animType != 0) {
if (neededTurn <= DEGTORAD(90.0f) || reason->GetModelIndex() == MI_RCBANDIT || vehPressedHorn || animType != 0) {
SetLookFlag(reason, true);
if ((CGeneral::GetRandomNumber() & 1) && !IS_RCBANDIT && animType == 0) {
if ((CGeneral::GetRandomNumber() & 1) && reason->GetModelIndex() != MI_RCBANDIT && animType == 0) {
stepAnim = ANIM_STD_HAILTAXI;
} else {
@ -6173,8 +6167,6 @@ CPed::SetEvasiveStep(CPhysical *reason, uint8 animType)
SetPedState(PED_STEP_AWAY);
}
}
#undef IS_RCBANDIT
}
void