diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-01 01:27:12 +0200 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2023-05-01 01:27:12 +0200 |
commit | 2feb40f14dd54e819078cd8ac1df0a3f2e8b2902 (patch) | |
tree | fce1ca24be5692320732bece8ad909de7f7a808c | |
parent | Merge pull request #10082 from FernandoS27/the-testers-really-love-chocolate (diff) | |
download | yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar.gz yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar.bz2 yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar.lz yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar.xz yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.tar.zst yuzu-2feb40f14dd54e819078cd8ac1df0a3f2e8b2902.zip |
-rw-r--r-- | src/audio_core/renderer/system.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/audio_core/renderer/system.cpp b/src/audio_core/renderer/system.cpp index ad869facb..53b258c4f 100644 --- a/src/audio_core/renderer/system.cpp +++ b/src/audio_core/renderer/system.cpp @@ -436,10 +436,7 @@ void System::Stop() { } if (execution_mode == ExecutionMode::Auto) { - // Should wait for the system to terminate here, but core timing (should have) already - // stopped, so this isn't needed. Find a way to make this definite. - - // terminate_event.Wait(); + terminate_event.Wait(); } } |