diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 01:46:43 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 01:46:46 +0200 |
commit | 2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8 (patch) | |
tree | 560552de4965febd0c81f8e81e49d76651267069 /src/core/hle | |
parent | Merge pull request #683 from DarkLordZach/touch (diff) | |
download | yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar.gz yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar.bz2 yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar.lz yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar.xz yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.tar.zst yuzu-2cd3141c30fb6084e4bf6fe16f365e0752a0f7b8.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/kernel/address_arbiter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/address_arbiter.cpp b/src/core/hle/kernel/address_arbiter.cpp index d5df9590a..dcc68aabf 100644 --- a/src/core/hle/kernel/address_arbiter.cpp +++ b/src/core/hle/kernel/address_arbiter.cpp @@ -65,7 +65,7 @@ static void WakeThreads(std::vector<SharedPtr<Thread>>& waiting_threads, s32 num // Signal the waiting threads. for (size_t i = 0; i < last; i++) { - ASSERT(waiting_threads[i]->status = THREADSTATUS_WAIT_ARB); + ASSERT(waiting_threads[i]->status == THREADSTATUS_WAIT_ARB); waiting_threads[i]->SetWaitSynchronizationResult(RESULT_SUCCESS); waiting_threads[i]->arb_wait_address = 0; waiting_threads[i]->ResumeFromWait(); |