mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #1204 from lioncash/null
Jit64: Change a NULL to nullptr
This commit is contained in:
commit
25fd805f54
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ void Jit64::FreeStack()
|
||||||
if (m_stack)
|
if (m_stack)
|
||||||
{
|
{
|
||||||
FreeMemoryPages(m_stack, STACK_SIZE);
|
FreeMemoryPages(m_stack, STACK_SIZE);
|
||||||
m_stack = NULL;
|
m_stack = nullptr;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue