diff options
author | bunnei <bunneidev@gmail.com> | 2014-11-26 06:38:50 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-11-26 21:04:08 +0100 |
commit | de851ba1a18ce2439a0b8ad46081990df377347c (patch) | |
tree | 035bd6d340ec4b31077eb24144f990f50cdb6c1c /src | |
parent | SVC: Add debug log to ArbitrateAddress. (diff) | |
download | yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar.gz yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar.bz2 yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar.lz yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar.xz yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.tar.zst yuzu-de851ba1a18ce2439a0b8ad46081990df377347c.zip |
Diffstat (limited to '')
-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 f3f54a4e9..f59795901 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -143,7 +143,7 @@ void ChangeReadyState(Thread* t, bool ready) { /// Verify that a thread has not been released from waiting inline bool VerifyWait(const Thread* thread, WaitType type, Handle wait_handle) { _dbg_assert_(KERNEL, thread != nullptr); - return type == thread->wait_type && wait_handle == thread->wait_handle; + return (type == thread->wait_type) && (wait_handle == thread->wait_handle) && (thread->IsWaiting()); } /// Stops the current thread |