- replaced some NULLs with nullptr.

This commit is contained in:
Christoph Oelckers 2019-01-06 09:39:35 +01:00
commit a11eea98b5
8 changed files with 53 additions and 53 deletions

View file

@ -54,15 +54,15 @@ DPillar::DPillar ()
void DPillar::OnDestroy()
{
if (m_Interp_Ceiling != NULL)
if (m_Interp_Ceiling != nullptr)
{
m_Interp_Ceiling->DelRef();
m_Interp_Ceiling = NULL;
m_Interp_Ceiling = nullptr;
}
if (m_Interp_Floor != NULL)
if (m_Interp_Floor != nullptr)
{
m_Interp_Floor->DelRef();
m_Interp_Floor = NULL;
m_Interp_Floor = nullptr;
}
Super::OnDestroy();
}