Browse Source
Merge pull request #190 from bunnei/fix-qt-waittree
debugger: Fix wait_tree crash.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/debugger/wait_tree.cpp
|
|
|
@ -168,7 +168,7 @@ QString WaitTreeThread::GetText() const { |
|
|
|
} |
|
|
|
QString pc_info = tr(" PC = 0x%1 LR = 0x%2") |
|
|
|
.arg(thread.context.pc, 8, 16, QLatin1Char('0')) |
|
|
|
.arg(thread.context.cpu_registers[31], 8, 16, QLatin1Char('0')); |
|
|
|
.arg(thread.context.cpu_registers[30], 8, 16, QLatin1Char('0')); |
|
|
|
return WaitTreeWaitObject::GetText() + pc_info + " (" + status + ") "; |
|
|
|
} |
|
|
|
|
|
|
|
|