summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcon.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2011-03-28 09:10:17 +0000
committer Aaron Giles <aaron@aarongiles.com>2011-03-28 09:10:17 +0000
commitaf071893a63485d60b1c52d9f15501d2213c8e5e (patch)
tree16635e21ef67490e0e585e45e4c8698ff520d073 /src/emu/debug/debugcon.c
parent58f70e918446d6940d8192adc240b4d60be66c3d (diff)
Cleanup of machine.h. Shuffled some fields around, and moved several
to private member variables with accessors: machine->m_respool ==> machine->respool() machine->config ==> machine->config() machine->gamedrv ==> machine->system() machine->m_regionlist ==> machine->first_region() machine->sample_rate ==> machine->sample_rate() Also converted internal lists to use simple_list.
Diffstat (limited to 'src/emu/debug/debugcon.c')
-rw-r--r--src/emu/debug/debugcon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcon.c b/src/emu/debug/debugcon.c
index 58073de9f7a..f09d3cce4fb 100644
--- a/src/emu/debug/debugcon.c
+++ b/src/emu/debug/debugcon.c
@@ -96,7 +96,7 @@ void debug_console_init(running_machine *machine)
/* print the opening lines */
debug_console_printf(machine, "MAME new debugger version %s\n", build_version);
- debug_console_printf(machine, "Currently targeting %s (%s)\n", machine->gamedrv->name, machine->gamedrv->description);
+ debug_console_printf(machine, "Currently targeting %s (%s)\n", machine->system().name, machine->system().description);
/* request callback upon exiting */
machine->add_notifier(MACHINE_NOTIFY_EXIT, debug_console_exit);