mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
Fixed conflict between min/max macros and std::min/max when using GCC >= 4.2.
This commit is contained in:
@ -227,7 +227,7 @@ void CNavNode::CheckCrouch( void )
|
||||
float floorZ;
|
||||
if ( TheNavMesh->GetGroundHeight( m_pos, &floorZ ) )
|
||||
{
|
||||
maxFloorZ = max( maxFloorZ, floorZ + 0.1f );
|
||||
maxFloorZ = MAX( maxFloorZ, floorZ + 0.1f );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user