mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
debugger: Always show zeroes on no thread's instructions positions
This commit is contained in:
parent
5d0066029f
commit
5bc4f9df0d
1 changed files with 2 additions and 3 deletions
|
@ -82,10 +82,9 @@ void debugger_list::ShowAddress(u32 addr, bool force)
|
||||||
|
|
||||||
if (!cpu)
|
if (!cpu)
|
||||||
{
|
{
|
||||||
u32 pc = m_pc;
|
for (uint i = 0; i < m_item_count; ++i)
|
||||||
for (uint i = 0; i < m_item_count; ++i, pc += 4)
|
|
||||||
{
|
{
|
||||||
item(i)->setText(qstr(fmt::format(" [%08x] ?? ?? ?? ??:", pc)));
|
item(i)->setText(qstr(fmt::format(" [%08x] ?? ?? ?? ??:", 0)));
|
||||||
item(i)->setForeground(default_foreground);
|
item(i)->setForeground(default_foreground);
|
||||||
item(i)->setBackground(default_background);
|
item(i)->setBackground(default_background);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue