summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Luke Street2018-12-04 02:25:34 -0500
committerGravatar Luke Street2018-12-04 02:25:34 -0500
commita3d78b77f8734cba6e73d3b57b0d6af68e7ca110 (patch)
tree4e2c9c9fb8feda9485551c3be607ca51be84a07a /src
parentsvc: Implement SetThreadActivity (thread suspension) (diff)
downloadyuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.gz
yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.xz
yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.zip
debugger: Set paused thread color
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);