mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 12:36:05 +08:00
Fixed conflict between min/max macros and std::min/max when using GCC >= 4.2.
This commit is contained in:
@ -2143,7 +2143,7 @@ void Physics_RunThinkFunctions( bool simulating )
|
||||
{
|
||||
UTIL_DisableRemoveImmediate();
|
||||
int listMax = SimThink_ListCount();
|
||||
listMax = max(listMax,1);
|
||||
listMax = MAX(listMax,1);
|
||||
CBaseEntity **list = (CBaseEntity **)stackalloc( sizeof(CBaseEntity *) * listMax );
|
||||
// iterate through all entities and have them think or simulate
|
||||
|
||||
|
Reference in New Issue
Block a user