mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Core: Replace 0 literals with nullptr
This commit is contained in:
parent
ce493b897d
commit
0f6c4653a4
6 changed files with 11 additions and 11 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue