diff options
author | 2016-01-12 09:50:59 +0100 | |
---|---|---|
committer | 2016-01-12 09:50:59 +0100 | |
commit | f9a9eafba08d2caf032f8a0e1c318dd46b8448a8 (patch) | |
tree | c86fb6df06fa19342bf7e9dc6afb6dbd41d6cc8b /src/emu/debug/debugcon.cpp | |
parent | 7dec0b41432f05b1687b0e08df626b19bef6e3c6 (diff) |
created debugger_manager, now this one owns debug_view_manager (nw)
Diffstat (limited to 'src/emu/debug/debugcon.cpp')
-rw-r--r-- | src/emu/debug/debugcon.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/debug/debugcon.cpp b/src/emu/debug/debugcon.cpp index 9b5bd969c83..51fa30f0489 100644 --- a/src/emu/debug/debugcon.cpp +++ b/src/emu/debug/debugcon.cpp @@ -384,8 +384,8 @@ CMDERR debug_console_execute_command(running_machine &machine, const char *comma /* update all views */ if (echo) { - machine.debug_view().update_all(); - debugger_refresh_display(machine); + machine.debugger().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.debug_view().update_all(DVT_CONSOLE); + machine.debugger().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.debug_view().update_all(DVT_CONSOLE); + machine.debugger().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.debug_view().update_all(DVT_CONSOLE); + machine.debugger().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.debug_view().update_all(DVT_LOG); + machine.debugger().view().update_all(DVT_LOG); } |