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:
@ -656,7 +656,7 @@ public:
|
||||
// Send caption and duration hint down to client
|
||||
UserMessageBegin( filterCopy, "CloseCaption" );
|
||||
WRITE_STRING( lowercase );
|
||||
WRITE_SHORT( min( 255, (int)( duration * 10.0f ) ) ),
|
||||
WRITE_SHORT( MIN( 255, (int)( duration * 10.0f ) ) ),
|
||||
WRITE_BYTE( byteflags ),
|
||||
MessageEnd();
|
||||
#else
|
||||
|
Reference in New Issue
Block a user