diff options
| author | 2019-09-26 19:08:22 -0400 | |
|---|---|---|
| committer | 2019-10-04 19:59:53 -0400 | |
| commit | 3f104464dec13f9ba90eaca5dafca87ee4116a60 (patch) | |
| tree | 29d73dec1ba2a661a9930c63689973a65482ce3b /src/core/core.cpp | |
| parent | Nvdrv: Correct Event setup in Nvdrv (diff) | |
| download | yuzu-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.cpp | 2 |
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(); |