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:
@ -1789,7 +1789,7 @@ ControlPanel::handleEvent (mxEvent *event)
|
||||
|
||||
if ( event->event == mxEvent::Size )
|
||||
{
|
||||
tab->setBounds( 0, 0, event->width, max( 0, event->height - 20 ) );
|
||||
tab->setBounds( 0, 0, event->width, MAX( 0, event->height - 20 ) );
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user