mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Debugger: Fix instructions editor
This commit is contained in:
parent
6f42297b58
commit
3ce7fd7894
2 changed files with 24 additions and 10 deletions
|
@ -232,8 +232,7 @@ void debugger_frame::keyPressEvent(QKeyEvent* event)
|
|||
return;
|
||||
}
|
||||
|
||||
const u32 start_pc = m_debugger_list->m_pc - m_debugger_list->m_item_count * 4;
|
||||
const u32 pc = start_pc + i * 4;
|
||||
const u32 pc = m_debugger_list->m_pc + i * 4;
|
||||
|
||||
if (QApplication::keyboardModifiers() & Qt::ControlModifier)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue