diff options
| author | 2022-06-10 09:17:12 -0400 | |
|---|---|---|
| committer | 2022-06-10 09:17:12 -0400 | |
| commit | 1f0fee33edf06bb237a952b78b6e117ba81cbdbb (patch) | |
| tree | 01ce352e9ffbc07cb2b7dc0fd1e1c4ea50298bee /src/yuzu_cmd/yuzu.cpp | |
| parent | core/debugger: support operation in yuzu-cmd (diff) | |
| download | yuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.tar.gz yuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.tar.xz yuzu-1f0fee33edf06bb237a952b78b6e117ba81cbdbb.zip | |
core/debugger: fix a number of shutdown deadlocks
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index a0d619c48..0dce5e274 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -229,6 +229,7 @@ int main(int argc, char** argv) { | |||
| 229 | while (emu_window->IsOpen()) { | 229 | while (emu_window->IsOpen()) { |
| 230 | emu_window->WaitEvent(); | 230 | emu_window->WaitEvent(); |
| 231 | } | 231 | } |
| 232 | system.DetachDebugger(); | ||
| 232 | void(system.Pause()); | 233 | void(system.Pause()); |
| 233 | system.Shutdown(); | 234 | system.Shutdown(); |
| 234 | 235 | ||