mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 01:29:02 +00:00
Merge remote-tracking branch 'upstream/miami' into miami
This commit is contained in:
commit
a9bf0fa97e
1 changed files with 5 additions and 1 deletions
|
@ -159,8 +159,12 @@ CProjectileInfo::AddProjectile(CEntity *entity, eWeaponType weapon, CVector pos,
|
||||||
}
|
}
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
while (i < ARRAY_SIZE(gaProjectileInfo) && gaProjectileInfo[i].m_bInUse) i++;
|
||||||
|
#else
|
||||||
|
// array overrun is UB
|
||||||
while (gaProjectileInfo[i].m_bInUse && i < ARRAY_SIZE(gaProjectileInfo)) i++;
|
while (gaProjectileInfo[i].m_bInUse && i < ARRAY_SIZE(gaProjectileInfo)) i++;
|
||||||
|
#endif
|
||||||
if (i == ARRAY_SIZE(gaProjectileInfo))
|
if (i == ARRAY_SIZE(gaProjectileInfo))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue