diff options
| author | 2020-03-03 13:02:50 -0400 | |
|---|---|---|
| committer | 2020-06-27 11:35:22 -0400 | |
| commit | 75e10578f12cf64bd734388ba80b5f5a46ca6133 (patch) | |
| tree | 4ba3fa4053193e03407dbfdd6d9d742537406000 /src/core/hle/kernel/synchronization.cpp | |
| parent | Process: Protect TLS region and Modules. (diff) | |
| download | yuzu-75e10578f12cf64bd734388ba80b5f5a46ca6133.tar.gz yuzu-75e10578f12cf64bd734388ba80b5f5a46ca6133.tar.xz yuzu-75e10578f12cf64bd734388ba80b5f5a46ca6133.zip | |
Core: Correct HLE Event Callbacks and other issues.
Diffstat (limited to 'src/core/hle/kernel/synchronization.cpp')
| -rw-r--r-- | src/core/hle/kernel/synchronization.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/synchronization.cpp b/src/core/hle/kernel/synchronization.cpp index c60c5bb42..4ee7ad93c 100644 --- a/src/core/hle/kernel/synchronization.cpp +++ b/src/core/hle/kernel/synchronization.cpp | |||
| @@ -28,6 +28,7 @@ void Synchronization::SignalObject(SynchronizationObject& obj) const { | |||
| 28 | time_manager.CancelTimeEvent(thread.get()); | 28 | time_manager.CancelTimeEvent(thread.get()); |
| 29 | } | 29 | } |
| 30 | } | 30 | } |
| 31 | obj.ClearWaitingThreads(); | ||
| 31 | } | 32 | } |
| 32 | } | 33 | } |
| 33 | 34 | ||