summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/debugger/wait_tree.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp
index 293351c75..fd4ddbd44 100644
--- a/src/yuzu/debugger/wait_tree.cpp
+++ b/src/yuzu/debugger/wait_tree.cpp
@@ -264,8 +264,9 @@ QColor WaitTreeThread::GetColor() const {
264 case Kernel::ThreadStatus::Running: 264 case Kernel::ThreadStatus::Running:
265 return QColor(Qt::GlobalColor::darkGreen); 265 return QColor(Qt::GlobalColor::darkGreen);
266 case Kernel::ThreadStatus::Ready: 266 case Kernel::ThreadStatus::Ready:
267 case Kernel::ThreadStatus::Paused:
268 return QColor(Qt::GlobalColor::darkBlue); 267 return QColor(Qt::GlobalColor::darkBlue);
268 case Kernel::ThreadStatus::Paused:
269 return QColor(Qt::GlobalColor::lightGray);
269 case Kernel::ThreadStatus::WaitHLEEvent: 270 case Kernel::ThreadStatus::WaitHLEEvent:
270 case Kernel::ThreadStatus::WaitIPC: 271 case Kernel::ThreadStatus::WaitIPC:
271 return QColor(Qt::GlobalColor::darkRed); 272 return QColor(Qt::GlobalColor::darkRed);