diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-25 21:47:35 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-25 21:50:41 +0200 |
commit | 24743406842706a7009a2608b5773dda4849e099 (patch) | |
tree | 2f39c261414b2bfece7417086025bd9f3475a43d | |
parent | Merge pull request #801 from lioncash/time (diff) | |
download | yuzu-24743406842706a7009a2608b5773dda4849e099.tar yuzu-24743406842706a7009a2608b5773dda4849e099.tar.gz yuzu-24743406842706a7009a2608b5773dda4849e099.tar.bz2 yuzu-24743406842706a7009a2608b5773dda4849e099.tar.lz yuzu-24743406842706a7009a2608b5773dda4849e099.tar.xz yuzu-24743406842706a7009a2608b5773dda4849e099.tar.zst yuzu-24743406842706a7009a2608b5773dda4849e099.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index 416cc1dfa..2b45b8573 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -209,6 +209,9 @@ QString WaitTreeThread::GetText() const { case ThreadStatus::WaitSleep: status = tr("sleeping"); break; + case ThreadStatus::WaitIPC: + status = tr("waiting for IPC reply"); + break; case ThreadStatus::WaitSynchAll: case ThreadStatus::WaitSynchAny: status = tr("waiting for objects"); @@ -240,6 +243,7 @@ QColor WaitTreeThread::GetColor() const { case ThreadStatus::Ready: return QColor(Qt::GlobalColor::darkBlue); case ThreadStatus::WaitHLEEvent: + case ThreadStatus::WaitIPC: return QColor(Qt::GlobalColor::darkRed); case ThreadStatus::WaitSleep: return QColor(Qt::GlobalColor::darkYellow); |