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 8ff094209..b2e7f4a97 100644
--- a/src/citra_qt/debugger/wait_tree.cpp
+++ b/src/citra_qt/debugger/wait_tree.cpp
@@ -230,7 +230,8 @@ 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.IsSleepingOnWaitAll())); 233 list.push_back(std::make_unique<WaitTreeObjectList>(thread.wait_objects,
234 thread.IsSleepingOnWaitAll()));
234 } 235 }
235 236
236 return list; 237 return list;