summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debugger.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-06-29 08:34:30 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-06-29 08:34:30 +0200
commit63f9a01f8c5d43b9cfe68c2d401a84647d19c10e (patch)
treea1f1874aa84850bddbebd2b0e0bfc3e1c77ce8c4 /src/emu/debugger.cpp
parent1f6f1bfd6cfb748d9c5e159d6bd014bab8d30944 (diff)
Cleanup and version bumpmame0175
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;