diff options
Diffstat (limited to 'src/mame/machine/k573fpga.cpp')
-rw-r--r-- | src/mame/machine/k573fpga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/k573fpga.cpp b/src/mame/machine/k573fpga.cpp index f11b80eebd6..4e85563af1f 100644 --- a/src/mame/machine/k573fpga.cpp +++ b/src/mame/machine/k573fpga.cpp @@ -50,7 +50,7 @@ void k573fpga_device::device_start() save_item(NAME(counter_base)); save_item(NAME(is_mpeg_frame_synced)); - m_stream_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(k573fpga_device::update_stream), this)); + m_stream_timer = timer_alloc(FUNC(k573fpga_device::update_stream), this); m_stream_timer->adjust(attotime::never); } |