summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorMichael Scire <SciresM@gmail.com>2018-06-21 13:13:06 +0200
committerMichael Scire <SciresM@gmail.com>2018-06-21 13:13:06 +0200
commit8f8fe62a19060a7c4529c4e0870412e9cd97e841 (patch)
tree709de4b3bbe9f5e5c3370d07cba9004e7ddafac4 /src/core/hle/kernel/thread.h
parentKernel/Arbiters: Clear WaitAddress in SignalToAddress (diff)
downloadyuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar.gz
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar.bz2
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar.lz
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar.xz
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.tar.zst
yuzu-8f8fe62a19060a7c4529c4e0870412e9cd97e841.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 0a76bd222..7a28f3c1c 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -232,7 +232,7 @@ public:
Handle wait_handle; ///< The handle used to wait for the mutex.
// If waiting for an AddressArbiter, this is the address being waited on.
- VAddr arb_wait_address;
+ VAddr arb_wait_address{0};
ResultCode arb_wait_result{RESULT_SUCCESS}; ///< Result returned when done waiting on AddressArbiter.
std::string name;