diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index ab1126a36..3ca9603c2 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -100,7 +100,7 @@ static bool CheckWait_AddressArbiter(const Thread* thread, VAddr wait_address) { | |||
| 100 | /// Stops the current thread | 100 | /// Stops the current thread |
| 101 | void Thread::Stop(const char* reason) { | 101 | void Thread::Stop(const char* reason) { |
| 102 | // Release all the mutexes that this thread holds | 102 | // Release all the mutexes that this thread holds |
| 103 | ReleaseThreadMutexes(GetHandle()); | 103 | ReleaseThreadMutexes(this); |
| 104 | 104 | ||
| 105 | ChangeReadyState(this, false); | 105 | ChangeReadyState(this, false); |
| 106 | status = THREADSTATUS_DORMANT; | 106 | status = THREADSTATUS_DORMANT; |