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:
@ -207,9 +207,9 @@ float CPointAngularVelocitySensor::SampleAngularVelocity(CBaseEntity *pEntity)
|
||||
else
|
||||
{
|
||||
QAngle vecAngVel = pEntity->GetLocalAngularVelocity();
|
||||
float flMax = max(fabs(vecAngVel[PITCH]), fabs(vecAngVel[YAW]));
|
||||
float flMax = MAX(fabs(vecAngVel[PITCH]), fabs(vecAngVel[YAW]));
|
||||
|
||||
return max(flMax, fabs(vecAngVel[ROLL]));
|
||||
return MAX(flMax, fabs(vecAngVel[ROLL]));
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user