diff options
author | Luke Street <luke.street@encounterpc.com> | 2018-12-04 08:25:34 +0100 |
---|---|---|
committer | Luke Street <luke.street@encounterpc.com> | 2018-12-04 08:25:34 +0100 |
commit | a3d78b77f8734cba6e73d3b57b0d6af68e7ca110 (patch) | |
tree | 4e2c9c9fb8feda9485551c3be607ca51be84a07a /src | |
parent | svc: Implement SetThreadActivity (thread suspension) (diff) | |
download | yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.gz yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.bz2 yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.lz yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.xz yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.tar.zst yuzu-a3d78b77f8734cba6e73d3b57b0d6af68e7ca110.zip |
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 { 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); |