summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-08 21:36:57 +0100
committerGitHub <noreply@github.com>2022-03-08 21:36:57 +0100
commitf2743b41b0f8f82bcfe678cf735819ea987b62b4 (patch)
treef5cd00237eda3d4ea49a434e8f01f2a912ded9ce /src/video_core
parentMerge pull request #7989 from degasus/maxwell_LUT3 (diff)
parentvideo_core: Cancel Scoped's exit call on GPU failure (diff)
downloadyuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar.gz
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar.bz2
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar.lz
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar.xz
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.tar.zst
yuzu-f2743b41b0f8f82bcfe678cf735819ea987b62b4.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/video_core.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp
index 329bf4def..2f2594585 100644
--- a/src/video_core/video_core.cpp
+++ b/src/video_core/video_core.cpp
@@ -50,6 +50,7 @@ std::unique_ptr<Tegra::GPU> CreateGPU(Core::Frontend::EmuWindow& emu_window, Cor
gpu->BindRenderer(std::move(renderer));
return gpu;
} catch (const std::runtime_error& exception) {
+ scope.Cancel();
LOG_ERROR(HW_GPU, "Failed to initialize GPU: {}", exception.what());
return nullptr;
}