mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 09:39:16 +01:00
Saner loop
This commit is contained in:
parent
9f0daee186
commit
cac1c5bd42
@ -2080,13 +2080,13 @@ CPlayerPed::UpdateMeleeAttackers(void)
|
||||
void
|
||||
CPlayerPed::RemovePedFromMeleeList(CPed *ped)
|
||||
{
|
||||
int i = 0;
|
||||
while (m_pMeleeList[i] != ped) {
|
||||
if (++i >= ARRAY_SIZE(m_pMeleeList))
|
||||
for (uint16 i = 0; i < ARRAY_SIZE(m_pMeleeList); i++) {
|
||||
if (m_pMeleeList[i] == ped) {
|
||||
m_pMeleeList[i] = nil;
|
||||
ped->m_attackTimer = 0;
|
||||
return;
|
||||
}
|
||||
}
|
||||
m_pMeleeList[i] = nil;
|
||||
ped->m_attackTimer = 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user