diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-06 18:30:01 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-06 18:30:01 -0400 |
commit | d0c179485392903fa413543d6b6908d45bc1f0fb (patch) | |
tree | a2e85ca4b091042e2e45446fda5b36bf6f62d2b3 /src/core/hle/kernel/mutex.cpp | |
parent | 90aaab1df0fe0a0518200c71df6ebe1bcf8eb783 (diff) | |
parent | 0805ecbaca70159ccc3d43c643b4ade7168795bc (diff) |
Merge pull request #34 from bunnei/gsp-command-synch
Gsp command synch
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r-- | src/core/hle/kernel/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index 1ccf1eb730..055f503f98 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; |