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:
@ -1185,7 +1185,7 @@ int CTriggerLook::DrawDebugTextOverlays(void)
|
||||
// Print Look time
|
||||
// ----------------
|
||||
char tempstr[255];
|
||||
Q_snprintf(tempstr,sizeof(tempstr),"Time: %3.2f",m_flLookTime - max(0,m_flLookTimeTotal));
|
||||
Q_snprintf(tempstr,sizeof(tempstr),"Time: %3.2f",m_flLookTime - MAX(0,m_flLookTimeTotal));
|
||||
EntityText(text_offset,tempstr,0);
|
||||
text_offset++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user