diff options
| author | 2016-01-12 12:00:56 +0100 | |
|---|---|---|
| committer | 2016-01-12 12:00:56 +0100 | |
| commit | 807265ed21396f4ae950d144513f02c828bc95d6 (patch) | |
| tree | 756f3dd500ba76cca4b3a86906b320f73289d7e6 /src/emu/debug/debugcon.cpp | |
| parent | db0bd9e5e5cc2146f5984bcdb7bde44ae660c350 (diff) | |
put debug_view back in machine due to issues with QT (nw)
Diffstat (limited to 'src/emu/debug/debugcon.cpp')
| -rw-r--r-- | src/emu/debug/debugcon.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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); } |
