Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Remove static_assert from previous commit
  • Loading branch information
Nopey committed Jul 27, 2021
1 parent 388dd5c commit 55e83982c31a18474a7789f1a966a25934ad37f8
Showing with 0 additions and 1 deletion.
  1. +0 −1 src/peds/Ped.cpp
@@ -393,7 +393,6 @@ CPed::BuildPedLists(void)
float dist = (ped->GetPosition() - GetPosition()).Magnitude2D();
if (nThreatReactionRangeMultiplier * 30.0f > dist) {
#ifdef FIX_BUGS
static_assert( ARRAY_SIZE(m_nearPeds) < ARRAY_SIZE(gapTempPedList) - 1, "gapTempPedList needs wiggle room for unsorted peds and nil slot" );
// If the gap ped list is full, sort it and truncate it
// before pushing more unsorted peds
if( gnNumTempPedList == ARRAY_SIZE(gapTempPedList) - 1 )

0 comments on commit 55e8398

Please sign in to comment.