[*] Win32: fix regression in error handling (after: ce424388 ?)

This commit is contained in:
Reece Wilson 2023-06-24 13:53:32 +01:00
parent 1783202384
commit 80faead53f

View File

@ -217,7 +217,6 @@ namespace Aurora::Debug
if (AuExchange(bRunOnce, true))
{
Telemetry::Mayday();
PlatformHandleFatal(true);
}
ParseStack(ExceptionInfo->ContextRecord, backtrace);
@ -290,6 +289,10 @@ namespace Aurora::Debug
{
PlatformHandleFatal(true, true);
}
else
{
PlatformHandleFatal(false);
}
}
catch (...)
{