mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 06:48:33 +00:00
Merge pull request #8235 from lioncash/move
Common/DebugInterface: Minor cleanup changes
This commit is contained in:
commit
66e7a11139
9 changed files with 172 additions and 155 deletions
|
@ -124,8 +124,8 @@ void CodeViewWidget::Update()
|
|||
|
||||
for (int i = 0; i < rowCount(); i++)
|
||||
{
|
||||
u32 addr = m_address - ((rowCount() / 2) * 4) + i * 4;
|
||||
u32 color = PowerPC::debug_interface.GetColor(addr);
|
||||
const u32 addr = m_address - ((rowCount() / 2) * 4) + i * 4;
|
||||
const u32 color = PowerPC::debug_interface.GetColor(addr);
|
||||
auto* bp_item = new QTableWidgetItem;
|
||||
auto* addr_item = new QTableWidgetItem(QStringLiteral("%1").arg(addr, 8, 16, QLatin1Char('0')));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue