mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
debugger: Always show zeroes on no thread's instructions positions
This commit is contained in:
parent
5d0066029f
commit
5bc4f9df0d
@ -82,10 +82,9 @@ void debugger_list::ShowAddress(u32 addr, bool force)
|
||||
|
||||
if (!cpu)
|
||||
{
|
||||
u32 pc = m_pc;
|
||||
for (uint i = 0; i < m_item_count; ++i, pc += 4)
|
||||
for (uint i = 0; i < m_item_count; ++i)
|
||||
{
|
||||
item(i)->setText(qstr(fmt::format(" [%08x] ?? ?? ?? ??:", pc)));
|
||||
item(i)->setText(qstr(fmt::format(" [%08x] ?? ?? ?? ??:", 0)));
|
||||
item(i)->setForeground(default_foreground);
|
||||
item(i)->setBackground(default_background);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user