summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-10 13:19:57 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-10 13:19:57 +0100
commit96490888396584845d0fd923b44c3b7611e56f8e (patch)
tree66d6bf4cb72e6e1f5f438f1fee40c5c8ed72b274 /src/emu/machine.cpp
parent283fbf13a4c8c07e3e45fdae316842d7a8608f2f (diff)
modernized bookkeeping manager (nw)
Diffstat (limited to 'src/emu/machine.cpp')
-rw-r--r--src/emu/machine.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp
index 1bb426a924e..4445cf96dff 100644
--- a/src/emu/machine.cpp
+++ b/src/emu/machine.cpp
@@ -121,7 +121,6 @@ running_machine::running_machine(const machine_config &_config, machine_manager
romload_data(nullptr),
ui_input_data(nullptr),
debugcpu_data(nullptr),
- generic_machine_data(nullptr),
m_config(_config),
m_system(_config.gamedrv()),
m_manager(manager),
@@ -221,7 +220,7 @@ void running_machine::start()
m_input = std::make_unique<input_manager>(*this);
output_init(*this);
m_render = std::make_unique<render_manager>(*this);
- generic_machine_init(*this);
+ m_bookkeeping = std::make_unique<bookkeeping_manager>(*this);
// allocate a soft_reset timer
m_soft_reset_timer = m_scheduler.timer_alloc(timer_expired_delegate(FUNC(running_machine::soft_reset), this));