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/debugcon.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/emu/debug/debugcon.cpp') diff --git a/src/emu/debug/debugcon.cpp b/src/emu/debug/debugcon.cpp index 51fa30f0489..7bf80dd6118 100644 --- a/src/emu/debug/debugcon.cpp +++ b/src/emu/debug/debugcon.cpp @@ -384,7 +384,7 @@ CMDERR debug_console_execute_command(running_machine &machine, const char *comma /* update all views */ if (echo) { - machine.debugger().view().update_all(); + machine.debug_view().update_all(); machine.debugger().refresh_display(); } return result; @@ -483,7 +483,7 @@ void CLIB_DECL debug_console_printf(running_machine &machine, const char *format text_buffer_print(console_textbuf, buffer.c_str()); /* force an update of any console views */ - machine.debugger().view().update_all(DVT_CONSOLE); + machine.debug_view().update_all(DVT_CONSOLE); } @@ -501,7 +501,7 @@ void CLIB_DECL debug_console_vprintf(running_machine &machine, const char *forma text_buffer_print(console_textbuf, buffer.c_str()); /* force an update of any console views */ - machine.debugger().view().update_all(DVT_CONSOLE); + machine.debug_view().update_all(DVT_CONSOLE); } @@ -523,7 +523,7 @@ void CLIB_DECL debug_console_printf_wrap(running_machine &machine, int wrapcol, text_buffer_print_wrap(console_textbuf, buffer.c_str(), wrapcol); /* force an update of any console views */ - machine.debugger().view().update_all(DVT_CONSOLE); + machine.debug_view().update_all(DVT_CONSOLE); } @@ -549,7 +549,7 @@ void debug_errorlog_write_line(const running_machine &machine, const char *line) text_buffer_print(errorlog_textbuf, line); /* force an update of any log views */ - machine.debugger().view().update_all(DVT_LOG); + machine.debug_view().update_all(DVT_LOG); } -- cgit v1.2.3