mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Implement BLR Overflow handling for Windows.
This commit is contained in:
parent
b164b4c475
commit
c5b3a2efac
7 changed files with 83 additions and 33 deletions
|
@ -58,8 +58,10 @@ LONG NTAPI Handler(PEXCEPTION_POINTERS pPtrs)
|
|||
}
|
||||
|
||||
case EXCEPTION_STACK_OVERFLOW:
|
||||
MessageBox(nullptr, _T("Stack overflow!"), nullptr, 0);
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
if (JitInterface::HandleStackFault())
|
||||
return EXCEPTION_CONTINUE_EXECUTION;
|
||||
else
|
||||
return EXCEPTION_CONTINUE_SEARCH;
|
||||
|
||||
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
||||
//No SSE support? Or simply bad codegen?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue