The big NULL replacement party part 2.

This may take a bit. Trying to do this by operator/command.
This commit is contained in:
Jason Felds
2013-05-03 23:11:42 -04:00
parent 9f24627bf9
commit ba59dd1656
174 changed files with 6644 additions and 6644 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ float TrailUtil::GetTotalSeconds( const Trail *pTrail )
void TrailID::FromTrail( const Trail *p )
{
if( p == NULL )
if( p == nullptr )
{
st = StepsType_Invalid;
cd = Difficulty_Invalid;
@@ -47,7 +47,7 @@ Trail *TrailID::ToTrail( const Course *p, bool bAllowNull ) const
m_Cache.Set( pRet );
}
if( !bAllowNull && pRet == NULL )
if( !bAllowNull && pRet == nullptr )
RageException::Throw( "%i, %i, \"%s\"", st, cd, p->GetDisplayFullTitle().c_str() );
return pRet;