summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/wait_tree.cpp
diff options
context:
space:
mode:
authorLuke Street <luke.street@encounterpc.com>2018-12-04 02:25:34 -0500
committerLuke Street <luke.street@encounterpc.com>2018-12-04 02:25:34 -0500
commita3d78b77f8734cba6e73d3b57b0d6af68e7ca110 (patch)
tree4e2c9c9fb8feda9485551c3be607ca51be84a07a /src/yuzu/debugger/wait_tree.cpp
parent3e75175d0242090902e4b383086e3f5ac6cf3f73 (diff)
debugger: Set paused thread color
Diffstat (limited to 'src/yuzu/debugger/wait_tree.cpp')
-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 {
case Kernel::ThreadStatus::Running:
return QColor(Qt::GlobalColor::darkGreen);
case Kernel::ThreadStatus::Ready:
- case Kernel::ThreadStatus::Paused:
return QColor(Qt::GlobalColor::darkBlue);
+ case Kernel::ThreadStatus::Paused:
+ return QColor(Qt::GlobalColor::lightGray);
case Kernel::ThreadStatus::WaitHLEEvent:
case Kernel::ThreadStatus::WaitIPC:
return QColor(Qt::GlobalColor::darkRed);