summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/wait_tree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/debugger/wait_tree.cpp')
-rw-r--r--src/citra_qt/debugger/wait_tree.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/wait_tree.cpp b/src/citra_qt/debugger/wait_tree.cpp
index 51e70fae3..5a308bf7f 100644
--- a/src/citra_qt/debugger/wait_tree.cpp
+++ b/src/citra_qt/debugger/wait_tree.cpp
@@ -229,7 +229,8 @@ std::vector<std::unique_ptr<WaitTreeItem>> WaitTreeThread::GetChildren() const {
229 list.push_back(std::make_unique<WaitTreeMutexList>(thread.held_mutexes)); 229 list.push_back(std::make_unique<WaitTreeMutexList>(thread.held_mutexes));
230 } 230 }
231 if (thread.status == THREADSTATUS_WAIT_SYNCH) { 231 if (thread.status == THREADSTATUS_WAIT_SYNCH) {
232 list.push_back(std::make_unique<WaitTreeObjectList>(thread.wait_objects, thread.wait_all)); 232 list.push_back(std::make_unique<WaitTreeObjectList>(thread.wait_objects,
233 thread.IsSleepingOnWaitAll()));
233 } 234 }
234 235
235 return list; 236 return list;