mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Another null check in NativeShutdown
This commit is contained in:
parent
f00367da20
commit
7fbb0c4d41
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user