summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/wait_tree.cpp
diff options
context:
space:
mode:
authorGravatar Subv2016-12-04 09:58:36 -0500
committerGravatar Subv2016-12-04 09:58:36 -0500
commitbdad00c73f46106ba78995bdde1b50349e940b09 (patch)
tree1c39ab11c8e995f2cbba8a5f602ab64819085b22 /src/citra_qt/debugger/wait_tree.cpp
parentThreading: Reworked the way our scheduler works. (diff)
downloadyuzu-bdad00c73f46106ba78995bdde1b50349e940b09.tar.gz
yuzu-bdad00c73f46106ba78995bdde1b50349e940b09.tar.xz
yuzu-bdad00c73f46106ba78995bdde1b50349e940b09.zip
Threading: Added some utility functions and const correctness.
Diffstat (limited to 'src/citra_qt/debugger/wait_tree.cpp')
-rw-r--r--src/citra_qt/debugger/wait_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/wait_tree.cpp b/src/citra_qt/debugger/wait_tree.cpp
index 8fc3e37e0..829ac7dd6 100644
--- a/src/citra_qt/debugger/wait_tree.cpp
+++ b/src/citra_qt/debugger/wait_tree.cpp
@@ -230,7 +230,7 @@ std::vector<std::unique_ptr<WaitTreeItem>> WaitTreeThread::GetChildren() const {
230 list.push_back(std::make_unique<WaitTreeMutexList>(thread.held_mutexes)); 230 list.push_back(std::make_unique<WaitTreeMutexList>(thread.held_mutexes));
231 } 231 }
232 if (thread.status == THREADSTATUS_WAIT_SYNCH) { 232 if (thread.status == THREADSTATUS_WAIT_SYNCH) {
233 list.push_back(std::make_unique<WaitTreeObjectList>(thread.wait_objects, !thread.wait_objects.empty())); 233 list.push_back(std::make_unique<WaitTreeObjectList>(thread.wait_objects, thread.IsWaitingAll()));
234 } 234 }
235 235
236 return list; 236 return list;