aboutsummaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorlat9nq <lat9nq@gmail.com>2022-03-07 01:39:16 -0500
committerlat9nq <lat9nq@gmail.com>2022-03-07 15:25:20 -0500
commit381f1dd2c993847fdef65b2c9da4c7ec29079553 (patch)
tree80943b6d490d7e99ae71681555ec89d44829cdb5 /src/core/core.cpp
parent370e480c8c6eee1ffdc2b718eb824112e1710f52 (diff)
core: Don't shutdown a null GPU
When CreateGPU fails, yuzu would try and shutdown the GPU instance regardless of whether any instance was actually created. Check for nullptr before calling its methods to prevent a crash.
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index b0cfee3ee0..c60a784c3e 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -326,7 +326,9 @@ struct System::Impl {
is_powered_on = false;
exit_lock = false;
- gpu_core->NotifyShutdown();
+ if (gpu_core != nullptr) {
+ gpu_core->NotifyShutdown();
+ }
services.reset();
service_manager.reset();