Another null check in NativeShutdown

This commit is contained in:
Henrik Rydgård 2023-01-03 11:02:26 +01:00
parent f00367da20
commit 7fbb0c4d41

View File

@ -1498,16 +1498,19 @@ bool NativeIsRestarting() {
}
void NativeShutdown() {
if (screenManager)
if (screenManager) {
screenManager->shutdown();
delete screenManager;
screenManager = nullptr;
delete screenManager;
screenManager = nullptr;
}
host->ShutdownGraphics();
if (host) {
host->ShutdownGraphics();
delete host;
host = nullptr;
}
#if !PPSSPP_PLATFORM(UWP)
delete host;
host = nullptr;
#endif
g_Config.Save("NativeShutdown");