diff options
author | 2021-01-30 22:46:43 +1100 | |
---|---|---|
committer | 2021-01-30 22:46:43 +1100 | |
commit | 8d04ca7d7d307ca8f85624c571ccfd4eb23a26e0 (patch) | |
tree | a0bca1a22f519b9628c4c13efb339e834ec41295 /src/osd/modules/debugger/qt/memorywindow.cpp | |
parent | fd3ca4668a6215f6821263742ac86a265f93c56e (diff) |
Debuger updates:
* Improved behaviour of bottom line in Qt and win32 debugger views.
* Ported memory tracking feature from Qt to win32 module.
Diffstat (limited to 'src/osd/modules/debugger/qt/memorywindow.cpp')
-rw-r--r-- | src/osd/modules/debugger/qt/memorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/qt/memorywindow.cpp b/src/osd/modules/debugger/qt/memorywindow.cpp index 149729e247d..6f25c6bc964 100644 --- a/src/osd/modules/debugger/qt/memorywindow.cpp +++ b/src/osd/modules/debugger/qt/memorywindow.cpp @@ -326,7 +326,7 @@ void DebuggerMemView::addItemsToContextMenu(QMenu *menu) if (addressSpace) { // get the last known PC to write to this memory location - debug_view_xy const pos = view()->cursor_position(); + debug_view_xy const pos = memView.cursor_position(); offs_t const address = memView.addressAtCursorPosition(pos); offs_t a = address & addressSpace->logaddrmask(); bool good = false; |