summaryrefslogtreecommitdiffstats
path: root/src/osd/modules/debugger/qt/dasmwindow.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-12 12:00:56 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-12 12:00:56 +0100
commit807265ed21396f4ae950d144513f02c828bc95d6 (patch)
tree756f3dd500ba76cca4b3a86906b320f73289d7e6 /src/osd/modules/debugger/qt/dasmwindow.cpp
parentdb0bd9e5e5cc2146f5984bcdb7bde44ae660c350 (diff)
put debug_view back in machine due to issues with QT (nw)
Diffstat (limited to 'src/osd/modules/debugger/qt/dasmwindow.cpp')
-rw-r--r--src/osd/modules/debugger/qt/dasmwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/qt/dasmwindow.cpp b/src/osd/modules/debugger/qt/dasmwindow.cpp
index 524b49bc4fc..ae8f1ff35e3 100644
--- a/src/osd/modules/debugger/qt/dasmwindow.cpp
+++ b/src/osd/modules/debugger/qt/dasmwindow.cpp
@@ -165,7 +165,7 @@ void DasmWindow::toggleBreakpointAtCursor(bool changedTo)
cpuinfo->breakpoint_clear(bpindex);
debug_console_printf(*m_machine, "Breakpoint %X cleared\n", bpindex);
}
- m_machine->debugger().view().update_all();
+ m_machine->debug_view().update_all();
m_machine->debugger().refresh_display();
}
@@ -190,7 +190,7 @@ void DasmWindow::enableBreakpointAtCursor(bool changedTo)
{
cpuinfo->breakpoint_enable(bp->index(), !bp->enabled());
debug_console_printf(*m_machine, "Breakpoint %X %s\n", (UINT32)bp->index(), bp->enabled() ? "enabled" : "disabled");
- m_machine->debugger().view().update_all();
+ m_machine->debug_view().update_all();
m_machine->debugger().refresh_display();
}
}