diff options
Diffstat (limited to 'src/frontend/mame/mame.cpp')
-rw-r--r-- | src/frontend/mame/mame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/mame.cpp b/src/frontend/mame/mame.cpp index e1eb535ea68..f3c08f661e9 100644 --- a/src/frontend/mame/mame.cpp +++ b/src/frontend/mame/mame.cpp @@ -304,13 +304,13 @@ void mame_machine_manager::ui_initialize(running_machine& machine) void mame_machine_manager::create_custom(running_machine& machine) { // start the inifile manager - m_inifile = std::make_unique<inifile_manager>(machine, m_ui->options()); + m_inifile = std::make_unique<inifile_manager>(m_ui->options()); // allocate autoboot timer m_autoboot_timer = machine.scheduler().timer_alloc(timer_expired_delegate(FUNC(mame_machine_manager::autoboot_callback), this)); // start favorite manager - m_favorite = std::make_unique<favorite_manager>(machine, m_ui->options()); + m_favorite = std::make_unique<favorite_manager>(m_ui->options()); } void mame_machine_manager::load_cheatfiles(running_machine& machine) |