diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-03 13:02:50 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:35:22 -0400 |
commit | 75e10578f12cf64bd734388ba80b5f5a46ca6133 (patch) | |
tree | 4ba3fa4053193e03407dbfdd6d9d742537406000 /src/core/hle/kernel/synchronization.cpp | |
parent | de5b521c0900bbd4d7012ffa3dfd63cc8f3d4371 (diff) |
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 c60c5bb422..4ee7ad93ca 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 { time_manager.CancelTimeEvent(thread.get()); } } + obj.ClearWaitingThreads(); } } |