diff options
| author | 2018-12-04 02:25:34 -0500 | |
|---|---|---|
| committer | 2018-12-04 02:25:34 -0500 | |
| commit | a3d78b77f8734cba6e73d3b57b0d6af68e7ca110 (patch) | |
| tree | 4e2c9c9fb8feda9485551c3be607ca51be84a07a /src | |
| parent | svc: Implement SetThreadActivity (thread suspension) (diff) | |
| download | yuzu-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.cpp | 3 |
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); |