diff options
Diffstat (limited to 'src/mame/drivers/z80clock.cpp')
-rw-r--r-- | src/mame/drivers/z80clock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/z80clock.cpp b/src/mame/drivers/z80clock.cpp index f5bde81fcc5..a06c5c1e1b4 100644 --- a/src/mame/drivers/z80clock.cpp +++ b/src/mame/drivers/z80clock.cpp @@ -142,7 +142,7 @@ protected: save_item(NAME(m_shift)); - m_clear_display_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(z80clock_state::clear_display), this)); + m_clear_display_timer = timer_alloc(FUNC(z80clock_state::clear_display), this); m_clear_display_timer->adjust(attotime::zero, 0, attotime::from_hz(240)); m_clear_display_count.resize(3); |