From 807265ed21396f4ae950d144513f02c828bc95d6 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 12 Jan 2016 12:00:56 +0100 Subject: put debug_view back in machine due to issues with QT (nw) --- src/emu/debug/debugcmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu/debug/debugcmd.cpp') 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); } -- cgit v1.2.3