diff options
| author | 2016-12-14 12:13:02 -0500 | |
|---|---|---|
| committer | 2016-12-14 12:35:01 -0500 | |
| commit | 5b1edc6ae70972d4a11eee1f1ff8fdff2122b5a2 (patch) | |
| tree | b6fbcc194effc5e05a608ebde0ea3c887720d920 /src/citra_qt/debugger/wait_tree.cpp | |
| parent | Properly remove a thread from its wait_objects' waitlist when it is awoken by... (diff) | |
| download | yuzu-5b1edc6ae70972d4a11eee1f1ff8fdff2122b5a2.tar.gz yuzu-5b1edc6ae70972d4a11eee1f1ff8fdff2122b5a2.tar.xz yuzu-5b1edc6ae70972d4a11eee1f1ff8fdff2122b5a2.zip | |
Fixed the codestyle to match our clang-format rules.
Diffstat (limited to 'src/citra_qt/debugger/wait_tree.cpp')
| -rw-r--r-- | src/citra_qt/debugger/wait_tree.cpp | 3 |
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; |