diff options
Diffstat (limited to 'src/mame/drivers/m10.cpp')
-rw-r--r-- | src/mame/drivers/m10.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/m10.cpp b/src/mame/drivers/m10.cpp index 05b90831b70..e01078229f6 100644 --- a/src/mame/drivers/m10.cpp +++ b/src/mame/drivers/m10.cpp @@ -162,7 +162,7 @@ void m1x_state::palette(palette_device &palette) const void m1x_state::machine_start() { - m_interrupt_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(m1x_state::interrupt_callback), this)); + m_interrupt_timer = timer_alloc(FUNC(m1x_state::interrupt_callback), this); save_item(NAME(m_flip)); save_item(NAME(m_last)); |