mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-03-27 22:05:25 -06:00
Handle exceptions from OutputDebugString API. (#3914)
Needed after #3900
This commit is contained in:
parent
12cd27d0b7
commit
ae47dd5d54
@ -33,6 +33,10 @@ static LONG WINAPI SignalHandler(EXCEPTION_POINTERS* pExp) noexcept {
|
||||
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
||||
handled = signals->DispatchIllegalInstruction(pExp);
|
||||
break;
|
||||
case DBG_PRINTEXCEPTION_C:
|
||||
case DBG_PRINTEXCEPTION_WIDE_C:
|
||||
// Used by OutputDebugString functions.
|
||||
return EXCEPTION_CONTINUE_EXECUTION;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user