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:
@ -113,7 +113,7 @@ void CalcRopeStartingConditions(
|
||||
rope.m_flRopeLength = (vEndPos - vStartPos).Length();
|
||||
rope.m_flWantedHangDist = desiredHang;
|
||||
|
||||
rope.m_flStartZ = min( vStartPos.z, vEndPos.z ); // Calculate hang as the Z distance from the
|
||||
rope.m_flStartZ = MIN( vStartPos.z, vEndPos.z ); // Calculate hang as the Z distance from the
|
||||
// lowest endpoint to the bottom of the rope.
|
||||
|
||||
rope.SetNumNodes( nNodes );
|
||||
|
Reference in New Issue
Block a user