From ce75a5d6825066fc67539c4eafed5902a34f9457 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 8 Jan 2016 12:41:13 +0100 Subject: removed memory tracking (nw) --- src/emu/debug/debugcon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emu/debug/debugcon.cpp') diff --git a/src/emu/debug/debugcon.cpp b/src/emu/debug/debugcon.cpp index b35d4afc690..9b5bd969c83 100644 --- a/src/emu/debug/debugcon.cpp +++ b/src/emu/debug/debugcon.cpp @@ -414,7 +414,7 @@ void debug_console_register_command(running_machine &machine, const char *comman assert_always(machine.phase() == MACHINE_PHASE_INIT, "Can only call debug_console_register_command() at init time!"); assert_always((machine.debug_flags & DEBUG_FLAG_ENABLED) != 0, "Cannot call debug_console_register_command() when debugger is not running"); - cmd = auto_alloc_clear(machine, debug_command); + cmd = auto_alloc_clear(machine, ()); /* fill in the command */ strcpy(cmd->command, command); -- cgit v1.2.3