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:
@ -556,7 +556,7 @@ Vector CFireParticle::UpdateColor( const SimpleParticle *pParticle )
|
||||
for ( int i = 0; i < 3; i++ )
|
||||
{
|
||||
//FIXME: This is frame dependant... but I don't want to store off start/end colors yet
|
||||
//pParticle->m_uchColor[i] = max( 0, pParticle->m_uchColor[i]-2 );
|
||||
//pParticle->m_uchColor[i] = MAX( 0, pParticle->m_uchColor[i]-2 );
|
||||
}
|
||||
|
||||
return CSimpleEmitter::UpdateColor( pParticle );
|
||||
|
Reference in New Issue
Block a user