summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.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/emu/debug/debugcmd.cpp
parentdb0bd9e5e5cc2146f5984bcdb7bde44ae660c350 (diff)
put debug_view back in machine due to issues with QT (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index 507b8b34860..4558413b2c3 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -1158,7 +1158,7 @@ static void execute_comment(running_machine &machine, int ref, int params, const
/* Now try adding the comment */
cpu->debug()->comment_add(address, param[1], 0x00ff0000);
- cpu->machine().debugger().view().update_all(DVT_DISASSEMBLY);
+ cpu->machine().debug_view().update_all(DVT_DISASSEMBLY);
}
@@ -1182,7 +1182,7 @@ static void execute_comment_del(running_machine &machine, int ref, int params, c
/* If it's a number, it must be an address */
/* The bankoff and cbn will be pulled from what's currently active */
cpu->debug()->comment_remove(address);
- cpu->machine().debugger().view().update_all(DVT_DISASSEMBLY);
+ cpu->machine().debug_view().update_all(DVT_DISASSEMBLY);
}