diff options
| author | 2016-12-04 09:58:36 -0500 | |
|---|---|---|
| committer | 2016-12-04 09:58:36 -0500 | |
| commit | bdad00c73f46106ba78995bdde1b50349e940b09 (patch) | |
| tree | 1c39ab11c8e995f2cbba8a5f602ab64819085b22 /src/citra_qt/debugger/wait_tree.cpp | |
| parent | Threading: Reworked the way our scheduler works. (diff) | |
| download | yuzu-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.cpp | 2 |
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; |