summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-12 09:50:59 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-12 09:50:59 +0100
commitf9a9eafba08d2caf032f8a0e1c318dd46b8448a8 (patch)
treec86fb6df06fa19342bf7e9dc6afb6dbd41d6cc8b /src/emu/debug/debugcmd.cpp
parent7dec0b41432f05b1687b0e08df626b19bef6e3c6 (diff)
created debugger_manager, now this one owns debug_view_manager (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index 328079095c9..507b8b34860 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -10,6 +10,7 @@
#include "emu.h"
#include "emuopts.h"
+#include "debugger.h"
#include "debugcmd.h"
#include "debugcon.h"
#include "debugcpu.h"
@@ -1157,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().debug_view().update_all(DVT_DISASSEMBLY);
+ cpu->machine().debugger().view().update_all(DVT_DISASSEMBLY);
}
@@ -1181,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().debug_view().update_all(DVT_DISASSEMBLY);
+ cpu->machine().debugger().view().update_all(DVT_DISASSEMBLY);
}