diff options
author | Michael Scire <SciresM@gmail.com> | 2018-06-21 12:20:39 +0200 |
---|---|---|
committer | Michael Scire <SciresM@gmail.com> | 2018-06-21 12:20:39 +0200 |
commit | 62bd1299ea8c855b4951a15f9f3b645c2953ee0c (patch) | |
tree | f45c32a9d5091ced21b4c2c608c6e0669bcde882 /src | |
parent | Kernel/Arbiters: Mostly implement SignalToAddress (diff) | |
download | yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar.gz yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar.bz2 yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar.lz yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar.xz yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.tar.zst yuzu-62bd1299ea8c855b4951a15f9f3b645c2953ee0c.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/address_arbiter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/address_arbiter.cpp b/src/core/hle/kernel/address_arbiter.cpp index 4556199ab..63cdcb559 100644 --- a/src/core/hle/kernel/address_arbiter.cpp +++ b/src/core/hle/kernel/address_arbiter.cpp @@ -68,6 +68,7 @@ namespace Kernel { for (size_t i = 0; i < last; i++) { ASSERT(waiting_threads[i]->status = THREADSTATUS_WAIT_ARB); waiting_threads[i]->arb_wait_result = RESULT_SUCCESS; + waiting_threads[i]->arb_wait_address = 0; waiting_threads[i]->ResumeFromWait(); } |