summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/debugqtmemorywindow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/qt/debugqtmemorywindow.c')
-rw-r--r--src/osd/modules/debugger/qt/debugqtmemorywindow.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/osd/modules/debugger/qt/debugqtmemorywindow.c b/src/osd/modules/debugger/qt/debugqtmemorywindow.c
index 19d107617e9..979f324801d 100644
--- a/src/osd/modules/debugger/qt/debugqtmemorywindow.c
+++ b/src/osd/modules/debugger/qt/debugqtmemorywindow.c
@@ -234,8 +234,8 @@ void MemoryWindow::populateComboBox()
m_memoryComboBox->clear();
for (const debug_view_source* source = m_memTable->view()->first_source();
- source != NULL;
- source = source->next())
+ source != NULL;
+ source = source->next())
{
m_memoryComboBox->addItem(source->name());
}
@@ -300,12 +300,12 @@ void DebuggerMemView::mousePressEvent(QMouseEvent* event)
address_space* addressSpace = source->space();
const int nativeDataWidth = addressSpace->data_width() / 8;
const UINT64 memValue = debug_read_memory(*addressSpace,
- addressSpace->address_to_byte(address),
- nativeDataWidth,
- true);
+ addressSpace->address_to_byte(address),
+ nativeDataWidth,
+ true);
const offs_t pc = source->device()->debug()->track_mem_pc_from_space_address_data(addressSpace->spacenum(),
- address,
- memValue);
+ address,
+ memValue);
if (pc != (offs_t)(-1))
{
// TODO: You can specify a box that the tooltip stays alive within - might be good?