Core: Replace 0 literals with nullptr

This commit is contained in:
Lioncash 2015-10-02 22:06:17 -04:00
commit 0f6c4653a4
6 changed files with 11 additions and 11 deletions

View file

@ -57,7 +57,7 @@ LONG NTAPI Handler(PEXCEPTION_POINTERS pPtrs)
}
case EXCEPTION_STACK_OVERFLOW:
MessageBox(0, _T("Stack overflow!"), 0,0);
MessageBox(nullptr, _T("Stack overflow!"), nullptr, 0);
return EXCEPTION_CONTINUE_SEARCH;
case EXCEPTION_ILLEGAL_INSTRUCTION: