diff options
Diffstat (limited to 'src/devices/machine/akiko.cpp')
-rw-r--r-- | src/devices/machine/akiko.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/akiko.cpp b/src/devices/machine/akiko.cpp index 40e73df64d9..13ae686a972 100644 --- a/src/devices/machine/akiko.cpp +++ b/src/devices/machine/akiko.cpp @@ -143,8 +143,8 @@ void akiko_device::device_start() m_cdrom_cmd_resp = 0; m_cdrom_toc = nullptr; - m_dma_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(akiko_device::dma_proc), this)); - m_frame_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(akiko_device::frame_proc), this)); + m_dma_timer = timer_alloc(FUNC(akiko_device::dma_proc), this); + m_frame_timer = timer_alloc(FUNC(akiko_device::frame_proc), this); } //------------------------------------------------- @@ -718,7 +718,7 @@ void akiko_device::update_cdrom() { m_cdrom_cmd_start = (m_cdrom_cmd_start + 3) & 0xff; - machine().scheduler().timer_set( attotime::from_msec(1), timer_expired_delegate(FUNC(akiko_device::cd_delayed_cmd ), this), resp[0]); + machine().scheduler().timer_set( attotime::from_msec(1), timer_expired_delegate( FUNC( akiko_device::cd_delayed_cmd ), this ), resp[0] ); break; } |