mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-23 13:59:49 +00:00
RegTest: Fix crash on startup
This commit is contained in:
parent
e169189441
commit
1963d80d2c
@ -719,7 +719,7 @@ int main(int argc, char* argv[])
|
||||
{
|
||||
Error startup_error;
|
||||
if (!System::Internal::PerformEarlyHardwareChecks(&startup_error) ||
|
||||
!System::Internal::CPUThreadInitialize(&startup_error))
|
||||
!System::Internal::ProcessStartup(&startup_error) || !System::Internal::CPUThreadInitialize(&startup_error))
|
||||
{
|
||||
ERROR_LOG("CPUThreadInitialize() failed: {}", startup_error.GetDescription());
|
||||
return EXIT_FAILURE;
|
||||
@ -756,5 +756,6 @@ int main(int argc, char* argv[])
|
||||
|
||||
cleanup:
|
||||
System::Internal::CPUThreadShutdown();
|
||||
System::Internal::ProcessShutdown();
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user