diff options
author | 2016-01-11 11:32:39 +0100 | |
---|---|---|
committer | 2016-01-11 11:32:39 +0100 | |
commit | 3c1ea41741e291681e8f33564e38f9529228ee81 (patch) | |
tree | 937e92d1419a60a6ba7ede883f34927340076402 /src/emu/machine.cpp | |
parent | 65458d447f13a2d62f45c3bf2e01053d20967c23 (diff) |
let's use our templates to clear (nw)
Diffstat (limited to 'src/emu/machine.cpp')
-rw-r--r-- | src/emu/machine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index 24bc712de15..16375213a76 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -225,7 +225,7 @@ void running_machine::start() m_soft_reset_timer = m_scheduler.timer_alloc(timer_expired_delegate(FUNC(running_machine::soft_reset), this)); // intialize UI input - m_ui_input = std::make_unique<ui_input_manager>(*this); + m_ui_input = make_unique_clear<ui_input_manager>(*this); // init the osd layer m_manager.osd().init(*this); |