aboutsummaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-09-26 19:08:22 -0400
committerFernandoS27 <fsahmkow27@gmail.com>2019-10-04 19:59:53 -0400
commit3f104464dec13f9ba90eaca5dafca87ee4116a60 (patch)
tree29d73dec1ba2a661a9930c63689973a65482ce3b /src/core/core.cpp
parent69fa2e652560dd72f7b53d44fec9d7fe4aa0ffb9 (diff)
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 75a7ffb973..8f68bdbad8 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -252,6 +252,8 @@ struct System::Impl {
is_powered_on = false;
exit_lock = false;
+ gpu_core->WaitIdle();
+
// Shutdown emulation session
renderer.reset();
GDBStub::Shutdown();