1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 15:26:00 +02:00

Added "System" option to RtCrashReportKind

This commit is contained in:
Brian Fiete 2024-02-27 16:20:17 -05:00
parent 54136f2606
commit 733b3fe41f
3 changed files with 19 additions and 14 deletions

View file

@ -1043,6 +1043,9 @@ static long __stdcall SEHFilter(LPEXCEPTION_POINTERS lpExceptPtr)
{
OutputDebugStrF("SEH Filter! CraskReportKind:%d\n", CrashCatcher::Get()->mCrashReportKind);
if (CrashCatcher::Get()->mCrashReportKind == BfpCrashReportKind_System)
return EXCEPTION_CONTINUE_SEARCH;
if (CrashCatcher::Get()->mCrashReportKind == BfpCrashReportKind_None)
{
OutputDebugStrF("Silent Exiting\n");