Change the exit function to not call static destructors.

This commit is contained in:
Skyth 2024-12-17 20:14:20 +00:00
parent ed025a7a5e
commit 8cd85f60c8

View file

@ -15,7 +15,7 @@ void App::Restart(std::vector<std::string> restartArgs)
void App::Exit()
{
Config::Save();
std::exit(0);
std::_Exit(0);
}
// CApplication::Ctor