mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 20:46:03 +08:00
Fixed conflict between min/max macros and std::min/max when using GCC >= 4.2.
This commit is contained in:
@ -453,7 +453,7 @@ void StudioModel::SetUpBones( bool mergeBones )
|
||||
{
|
||||
if (m_Layer[i].m_weight > 0)
|
||||
{
|
||||
iMaxPriority = max( m_Layer[i].m_priority, iMaxPriority );
|
||||
iMaxPriority = MAX( m_Layer[i].m_priority, iMaxPriority );
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user