diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-08 12:36:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 12:36:57 -0800 |
commit | f2743b41b0f8f82bcfe678cf735819ea987b62b4 (patch) | |
tree | f5cd00237eda3d4ea49a434e8f01f2a912ded9ce /src/core/core.cpp | |
parent | 35309f27ed129dfda8b6ba7f126bf22f12bb9b4c (diff) | |
parent | b5e60ae1b0568d6c9e47134dd2bda70906a2dad9 (diff) |
Merge pull request #7986 from lat9nq/vk-callback
core, video_core: Fix two crashes when failing to create the emulated GPU instance
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index b0cfee3ee..c60a784c3 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(); |