summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-09-26 19:08:22 -0400
committerGravatar FernandoS272019-10-04 19:59:53 -0400
commit3f104464dec13f9ba90eaca5dafca87ee4116a60 (patch)
tree29d73dec1ba2a661a9930c63689973a65482ce3b /src/core/core.cpp
parentNvdrv: Correct Event setup in Nvdrv (diff)
downloadyuzu-3f104464dec13f9ba90eaca5dafca87ee4116a60.tar.gz
yuzu-3f104464dec13f9ba90eaca5dafca87ee4116a60.tar.xz
yuzu-3f104464dec13f9ba90eaca5dafca87ee4116a60.zip
Core: Wait for GPU to be idle before shutting down.
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 75a7ffb97..8f68bdbad 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -252,6 +252,8 @@ struct System::Impl {
252 is_powered_on = false; 252 is_powered_on = false;
253 exit_lock = false; 253 exit_lock = false;
254 254
255 gpu_core->WaitIdle();
256
255 // Shutdown emulation session 257 // Shutdown emulation session
256 renderer.reset(); 258 renderer.reset();
257 GDBStub::Shutdown(); 259 GDBStub::Shutdown();