summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2018-07-25 18:45:01 -0400
committerGitHub <noreply@github.com>2018-07-25 18:45:01 -0400
commit19b5ae5a253a58604a3b535bbee8009e58c77ac7 (patch)
tree16c2cc2deac89726fdd6ad3b98350741d7ecdce5 /src
parentc88382517cd9d7e0b9046c0ea8690c38e778e6f6 (diff)
parent24743406842706a7009a2608b5773dda4849e099 (diff)
Merge pull request #821 from lioncash/wait
wait_tree: Add missing switch case for WaitTreeThread::GetText()
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/debugger/wait_tree.cpp4
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);