summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index 736944bae..8d92a9b8e 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -84,6 +84,7 @@ void Mutex::Release() {
84 if (lock_count == 0) { 84 if (lock_count == 0) {
85 holding_thread->held_mutexes.erase(this); 85 holding_thread->held_mutexes.erase(this);
86 ResumeWaitingThread(this); 86 ResumeWaitingThread(this);
87 Core::System::GetInstance().PrepareReschedule();
87 } 88 }
88 } 89 }
89} 90}