diff options
Diffstat (limited to 'src/mame/machine/cdislavehle.cpp')
-rw-r--r-- | src/mame/machine/cdislavehle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/cdislavehle.cpp b/src/mame/machine/cdislavehle.cpp index 4c103f24a37..21812cc85f5 100644 --- a/src/mame/machine/cdislavehle.cpp +++ b/src/mame/machine/cdislavehle.cpp @@ -471,7 +471,7 @@ void cdislave_hle_device::device_start() save_item(NAME(m_device_mouse_x)); save_item(NAME(m_device_mouse_y)); - m_interrupt_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(cdislave_hle_device::trigger_readback_int), this)); + m_interrupt_timer = timer_alloc(FUNC(cdislave_hle_device::trigger_readback_int), this); m_interrupt_timer->adjust(attotime::never); } |