Jit64: Change a NULL to nullptr

This commit is contained in:
Lioncash 2014-10-02 00:05:27 -04:00
parent 68edddf10e
commit 54c454fc82

View file

@ -141,7 +141,7 @@ void Jit64::FreeStack()
if (m_stack)
{
FreeMemoryPages(m_stack, STACK_SIZE);
m_stack = NULL;
m_stack = nullptr;
}
#endif
}