mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-09 03:24:52 +00:00
Ambiguous operator invocation for CUtlReference == NULL
Not sure why this is a thing, but it just is.
This commit is contained in:
parent
d07007fdfe
commit
b7248bbac6
1 changed files with 1 additions and 1 deletions
|
@ -2434,7 +2434,7 @@ FORCEINLINE Vector CParticleCollection::GetControlPointVelocityAtCurrentTime( in
|
|||
|
||||
FORCEINLINE bool CParticleCollection::IsValid( void ) const
|
||||
{
|
||||
return ( m_pDef != NULL && m_pDef->GetMaterial() );
|
||||
return ( m_pDef != CUtlReference<CParticleSystemDefinition>(NULL) && m_pDef->GetMaterial() );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue