Just call std::_Exit

We're not using at_quick_exit so no real point in calling quick_exit.
This commit is contained in:
Gunter Labes 2023-07-24 19:23:31 +02:00 committed by GitHub
parent 92544f380d
commit 6ce218f7a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,11 +179,7 @@ loading_screen::~loading_screen()
* the window).
*/
if(worker_result_.valid()) {
#if defined(_LIBCPP_VERSION) || defined(__MINGW32__)
std::_Exit(0);
#else
std::quick_exit(0);
#endif
}
singleton_ = nullptr;