mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-10 10:09:22 +00:00
disasm: Improve instructions spacing
This commit is contained in:
parent
fd45bf5fba
commit
f2d6a1ff60
1 changed files with 3 additions and 3 deletions
|
@ -87,14 +87,14 @@ void debugger_list::ShowAddress(u32 addr)
|
|||
{
|
||||
if (!vm::check_addr(cpu_offset + m_pc, 4))
|
||||
{
|
||||
item(i)->setText((IsBreakpoint(m_pc) ? ">>> " : " ") + qstr(fmt::format("[%08x] illegal address", m_pc)));
|
||||
item(i)->setText((IsBreakpoint(m_pc) ? ">> " : " ") + qstr(fmt::format("[%08x] illegal address", m_pc)));
|
||||
count = 4;
|
||||
continue;
|
||||
}
|
||||
|
||||
count = m_disasm->disasm(m_disasm->dump_pc = m_pc);
|
||||
|
||||
item(i)->setText((IsBreakpoint(m_pc) ? ">>> " : " ") + qstr(m_disasm->last_opcode));
|
||||
item(i)->setText((IsBreakpoint(m_pc) ? ">> " : " ") + qstr(m_disasm->last_opcode));
|
||||
|
||||
if (cpu->is_paused() && m_pc == GetPc())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue