diff options
| author | bunnei <bunneidev@gmail.com> | 2018-06-22 12:08:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-22 12:08:39 -0400 |
| commit | 6d7941042bd8badcd8e93521b40cbbc29215351e (patch) | |
| tree | f4b72f5d717e1fffe784b1f4100fe01177b6b02a /src/yuzu | |
| parent | 52a78228ddfb83f4353150fc0e118fbfbdbbc4ea (diff) | |
| parent | 067ac434ba90084359babef1638970e849a5f2ce (diff) | |
Merge pull request #579 from SciresM/master
svc: Fully implement svcSignalToAddress and svcWaitForAddress
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index 017bef13c..7101b381e 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -213,6 +213,9 @@ QString WaitTreeThread::GetText() const { case THREADSTATUS_WAIT_MUTEX: status = tr("waiting for mutex"); break; + case THREADSTATUS_WAIT_ARB: + status = tr("waiting for address arbiter"); + break; case THREADSTATUS_DORMANT: status = tr("dormant"); break; @@ -240,6 +243,7 @@ QColor WaitTreeThread::GetColor() const { case THREADSTATUS_WAIT_SYNCH_ALL: case THREADSTATUS_WAIT_SYNCH_ANY: case THREADSTATUS_WAIT_MUTEX: + case THREADSTATUS_WAIT_ARB: return QColor(Qt::GlobalColor::red); case THREADSTATUS_DORMANT: return QColor(Qt::GlobalColor::darkCyan); |
