mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 05:39:01 +00:00
Merge pull request #1257 from Nopey/fixbugs_pedgaplist
Fix bug triggering gnNumTempPedList assertion
This commit is contained in:
commit
1eedf7f0ae
1 changed files with 12 additions and 0 deletions
|
@ -393,8 +393,20 @@ CPed::BuildPedLists(void)
|
||||||
if (ped != this && !ped->bInVehicle) {
|
if (ped != this && !ped->bInVehicle) {
|
||||||
float dist = (ped->GetPosition() - GetPosition()).Magnitude2D();
|
float dist = (ped->GetPosition() - GetPosition()).Magnitude2D();
|
||||||
if (nThreatReactionRangeMultiplier * 30.0f > dist) {
|
if (nThreatReactionRangeMultiplier * 30.0f > dist) {
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
// If the gap ped list is full, sort it and truncate it
|
||||||
|
// before pushing more unsorted peds
|
||||||
|
if( gnNumTempPedList == ARRAY_SIZE(gapTempPedList) - 1 )
|
||||||
|
{
|
||||||
|
gapTempPedList[gnNumTempPedList] = nil;
|
||||||
|
SortPeds(gapTempPedList, 0, gnNumTempPedList - 1);
|
||||||
|
gnNumTempPedList = ARRAY_SIZE(m_nearPeds);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
gapTempPedList[gnNumTempPedList] = ped;
|
gapTempPedList[gnNumTempPedList] = ped;
|
||||||
gnNumTempPedList++;
|
gnNumTempPedList++;
|
||||||
|
// NOTE: We cannot absolutely fill the gap list, as the list is null-terminated before being passed to SortPeds
|
||||||
assert(gnNumTempPedList < ARRAY_SIZE(gapTempPedList));
|
assert(gnNumTempPedList < ARRAY_SIZE(gapTempPedList));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue