summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Scire <SciresM@gmail.com>2018-06-21 12:20:39 +0200
committerMichael Scire <SciresM@gmail.com>2018-06-21 12:20:39 +0200
commit62bd1299ea8c855b4951a15f9f3b645c2953ee0c (patch)
treef45c32a9d5091ced21b4c2c608c6e0669bcde882 /src/core
parentKernel/Arbiters: Mostly implement SignalToAddress (diff)
downloadyuzu-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/core')
-rw-r--r--src/core/hle/kernel/address_arbiter.cpp1
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();
}