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:
@ -288,7 +288,7 @@ bool CHudHintDisplay::SetHintText( const char *text )
|
||||
}
|
||||
}
|
||||
}
|
||||
int tallest = max( tallest1, tallest2 );
|
||||
int tallest = MAX( tallest1, tallest2 );
|
||||
|
||||
// position the labels
|
||||
int col1_x = m_iTextX;
|
||||
|
Reference in New Issue
Block a user