summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debugger.cpp')
-rw-r--r--src/emu/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debugger.cpp b/src/emu/debugger.cpp
index 52031ff7753..b2e5bfd3fd6 100644
--- a/src/emu/debugger.cpp
+++ b/src/emu/debugger.cpp
@@ -125,7 +125,7 @@ debugger_manager::debugger_manager(running_machine &machine)
/* initialize the submodules */
m_cpu = std::make_unique<debugger_cpu>(machine);
m_console = std::make_unique<debugger_console>(machine);
- m_commands = std::make_unique<debugger_commands>(machine, cpu(), console());
+ m_commands = std::make_unique<debugger_commands>(machine, cpu(), console());
g_machine = &machine;