mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 04:26:03 +08:00
Fixed conflict between min/max macros and std::min/max when using GCC >= 4.2.
This commit is contained in:
@ -48,7 +48,7 @@ void CSequenceTransitioner::CheckForSequenceChange(
|
||||
else
|
||||
{
|
||||
mstudioseqdesc_t &prevseqdesc = hdr->pSeqdesc( currentblend->m_nSequence );
|
||||
currentblend->m_flLayerFadeOuttime = min( prevseqdesc.fadeouttime, seqdesc.fadeintime );
|
||||
currentblend->m_flLayerFadeOuttime = MIN( prevseqdesc.fadeouttime, seqdesc.fadeintime );
|
||||
/*
|
||||
// clip blends to time remaining
|
||||
if ( !IsSequenceLooping(hdr, currentblend->m_nSequence) )
|
||||
|
Reference in New Issue
Block a user