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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index 1ccf1eb73..055f503f9 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -48,7 +48,7 @@ public:
48 *wait = locked; 48 *wait = locked;
49 49
50 if (locked) { 50 if (locked) {
51 Kernel::WaitCurrentThread(WAITTYPE_MUTEX); 51 Kernel::WaitCurrentThread(WAITTYPE_MUTEX, GetHandle());
52 } 52 }
53 53
54 return 0; 54 return 0;