diff options
| author | 2014-08-06 18:30:01 -0400 | |
|---|---|---|
| committer | 2014-08-06 18:30:01 -0400 | |
| commit | d0c179485392903fa413543d6b6908d45bc1f0fb (patch) | |
| tree | a2e85ca4b091042e2e45446fda5b36bf6f62d2b3 /src/core/hle/kernel/mutex.cpp | |
| parent | Merge pull request #36 from bunnei/fix-memory-unaligned-reads (diff) | |
| parent | GPU: Updated g_last_ticks variable to be more descriptive (represents CPU tic... (diff) | |
| download | yuzu-d0c179485392903fa413543d6b6908d45bc1f0fb.tar.gz yuzu-d0c179485392903fa413543d6b6908d45bc1f0fb.tar.xz yuzu-d0c179485392903fa413543d6b6908d45bc1f0fb.zip | |
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 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; |