summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcon.cpp')
-rw-r--r--src/emu/debug/debugcon.cpp12
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);
}