diff options
author | Michael Scire <SciresM@gmail.com> | 2018-06-21 04:07:03 -0600 |
---|---|---|
committer | Michael Scire <SciresM@gmail.com> | 2018-06-21 04:10:11 -0600 |
commit | 4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0 (patch) | |
tree | 597b478c20184a6c40692b4d7c695c8b1cac362e /src/yuzu/debugger/wait_tree.cpp | |
parent | 9d71ce88cee58d2e171ec5ed82daf075112fb422 (diff) |
Kernel/Arbiters: Mostly implement SignalToAddress
Diffstat (limited to 'src/yuzu/debugger/wait_tree.cpp')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index 800e431bd..7101b381e 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -213,7 +213,7 @@ QString WaitTreeThread::GetText() const { case THREADSTATUS_WAIT_MUTEX: status = tr("waiting for mutex"); break; - case THREADSTATUS_WAIT_MUTEX: + case THREADSTATUS_WAIT_ARB: status = tr("waiting for address arbiter"); break; case THREADSTATUS_DORMANT: |