diff options
| author | 2014-11-26 10:37:58 +0100 | |
|---|---|---|
| committer | 2014-11-26 10:37:58 +0100 | |
| commit | ebeaa953a3a6ae98842b4a169bc95e5f3c673d8c (patch) | |
| tree | 41959790c00308fc3cac9c71176709f53683151d /src/osd/modules/debugger/qt/debugqtmemorywindow.c | |
| parent | 18b8ce2f9467ae23672cea11f4a3fc5e42e24b9c (diff) | |
Cleanups and version bumpmame0156
Diffstat (limited to 'src/osd/modules/debugger/qt/debugqtmemorywindow.c')
| -rw-r--r-- | src/osd/modules/debugger/qt/debugqtmemorywindow.c | 14 |
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? |
