diff options
| author | 2021-04-09 11:52:18 -0700 | |
|---|---|---|
| committer | 2021-04-09 11:52:18 -0700 | |
| commit | d6e5e053a6c4fe8538d4b97b8f5a1eba61e2fcac (patch) | |
| tree | 71dafa020afef119e3d3b57e22ca14f4ba42d9d8 /src/core/core.cpp | |
| parent | Merge pull request #6164 from Morph1984/service-update-12.x (diff) | |
| parent | video_core: Use a CV for blocking commands. (diff) | |
| download | yuzu-d6e5e053a6c4fe8538d4b97b8f5a1eba61e2fcac.tar.gz yuzu-d6e5e053a6c4fe8538d4b97b8f5a1eba61e2fcac.tar.xz yuzu-d6e5e053a6c4fe8538d4b97b8f5a1eba61e2fcac.zip | |
Merge pull request #6162 from degasus/no_spin_loops
video_core: Avoid spin loops.
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 305f56ff1..56b47e671 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -296,7 +296,7 @@ struct System::Impl { | |||
| 296 | exit_lock = false; | 296 | exit_lock = false; |
| 297 | 297 | ||
| 298 | if (gpu_core) { | 298 | if (gpu_core) { |
| 299 | gpu_core->WaitIdle(); | 299 | gpu_core->ShutDown(); |
| 300 | } | 300 | } |
| 301 | 301 | ||
| 302 | services.reset(); | 302 | services.reset(); |