Browse Source

debugger: Set paused thread color

nce_cpp
Luke Street 7 years ago
parent
commit
33473a7e7b
  1. 3
      src/yuzu/debugger/wait_tree.cpp

3
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);

Loading…
Cancel
Save