diff options
author | 2016-01-10 18:41:17 +0100 | |
---|---|---|
committer | 2016-01-10 18:41:17 +0100 | |
commit | f9f908d48bd3607f8ddf529eb6b83c2b4b0b9790 (patch) | |
tree | 5d0008d8b4e1e9eb6acda88b16c81b1883c66e06 /src/emu/machine.cpp | |
parent | 3e5ad46410db4d3b3d8bd4b4bb84c3cdce2b1bfd (diff) |
modernize output_manager (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 a48aa0811c6..a858d5df962 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -218,7 +218,7 @@ void running_machine::start() // initialize basic can't-fail systems here m_configuration = std::make_unique<configuration_manager>(*this); m_input = std::make_unique<input_manager>(*this); - output_init(*this); + m_output = std::make_unique<output_manager>(*this); m_render = std::make_unique<render_manager>(*this); m_bookkeeping = std::make_unique<bookkeeping_manager>(*this); |