summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-25 15:47:35 -0400
committerGravatar Lioncash2018-07-25 15:50:41 -0400
commit24743406842706a7009a2608b5773dda4849e099 (patch)
tree2f39c261414b2bfece7417086025bd9f3475a43d /src
parentMerge pull request #801 from lioncash/time (diff)
downloadyuzu-24743406842706a7009a2608b5773dda4849e099.tar.gz
yuzu-24743406842706a7009a2608b5773dda4849e099.tar.xz
yuzu-24743406842706a7009a2608b5773dda4849e099.zip
wait_tree: Add missing switch case for WaitTreeThread::GetText()
We were missing the enum entry for WaitIPC
Diffstat (limited to '')
-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 {
209 case ThreadStatus::WaitSleep: 209 case ThreadStatus::WaitSleep:
210 status = tr("sleeping"); 210 status = tr("sleeping");
211 break; 211 break;
212 case ThreadStatus::WaitIPC:
213 status = tr("waiting for IPC reply");
214 break;
212 case ThreadStatus::WaitSynchAll: 215 case ThreadStatus::WaitSynchAll:
213 case ThreadStatus::WaitSynchAny: 216 case ThreadStatus::WaitSynchAny:
214 status = tr("waiting for objects"); 217 status = tr("waiting for objects");
@@ -240,6 +243,7 @@ QColor WaitTreeThread::GetColor() const {
240 case ThreadStatus::Ready: 243 case ThreadStatus::Ready:
241 return QColor(Qt::GlobalColor::darkBlue); 244 return QColor(Qt::GlobalColor::darkBlue);
242 case ThreadStatus::WaitHLEEvent: 245 case ThreadStatus::WaitHLEEvent:
246 case ThreadStatus::WaitIPC:
243 return QColor(Qt::GlobalColor::darkRed); 247 return QColor(Qt::GlobalColor::darkRed);
244 case ThreadStatus::WaitSleep: 248 case ThreadStatus::WaitSleep:
245 return QColor(Qt::GlobalColor::darkYellow); 249 return QColor(Qt::GlobalColor::darkYellow);