aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-07-21 18:50:49 -0400
committerGravatar bunnei <bunneidev@gmail.com>2014-08-05 20:14:51 -0400
commit7a1f813be15aca815893139b1de125f4e3f47d84 (patch)
tree5ca441fb8d06be369f801051c9100eb6f97981c3 /src/core/hle/kernel/mutex.cpp
parent2003ccf09d0d542ef31821cff6cafd0b40cd2f23 (diff)
Kernel: Updated Event and Mutex to specify handle that they are blocking for.
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 1ccf1eb7..055f503f 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -48,7 +48,7 @@ public:
*wait = locked;
if (locked) {
- Kernel::WaitCurrentThread(WAITTYPE_MUTEX);
+ Kernel::WaitCurrentThread(WAITTYPE_MUTEX, GetHandle());
}
return 0;