[*] Amended Win7 fast fail path
This commit is contained in:
parent
677a845614
commit
9fcee7041e
@ -420,13 +420,14 @@ namespace Aurora::Debug
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
if (AuSwInfo::IsWindows8Point1OrGreater())
|
||||
{
|
||||
__fastfail('fokd');
|
||||
}
|
||||
else
|
||||
{
|
||||
ExitProcess(0);
|
||||
TerminateProcess(GetCurrentProcess(), 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -498,8 +499,15 @@ namespace Aurora::Debug
|
||||
report.resource.type = Telemetry::ENewBlackBoxResourceType::eLocal;
|
||||
Telemetry::ReportDyingBreath(report);
|
||||
|
||||
if (AuSwInfo::IsWindows8Point1OrGreater())
|
||||
{
|
||||
__fastfail('fokd');
|
||||
}
|
||||
else
|
||||
{
|
||||
TerminateProcess(GetCurrentProcess(), 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void CacheInternalBuildSymbols()
|
||||
|
@ -116,7 +116,14 @@ namespace Aurora::Debug
|
||||
}
|
||||
|
||||
#if defined(AURORA_IS_MODERNNT_DERIVED)
|
||||
__fastfail('FCKD');
|
||||
if (AuSwInfo::IsWindows8Point1OrGreater())
|
||||
{
|
||||
__fastfail('fokd');
|
||||
}
|
||||
else
|
||||
{
|
||||
TerminateProcess(GetCurrentProcess(), 0);
|
||||
}
|
||||
#else
|
||||
#if defined(AURORA_COMPILER_GCC) || defined(AURORA_COMPILER_CLANG)
|
||||
__builtin_trap();
|
||||
|
Loading…
Reference in New Issue
Block a user