diff options
Diffstat (limited to 'src/mame/audio/ad_sound.cpp')
-rw-r--r-- | src/mame/audio/ad_sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/ad_sound.cpp b/src/mame/audio/ad_sound.cpp index 3f249326cd8..61700edd1b6 100644 --- a/src/mame/audio/ad_sound.cpp +++ b/src/mame/audio/ad_sound.cpp @@ -407,7 +407,7 @@ void ad_59mc07_device::device_start() save_item(NAME(m_cymvol)); save_item(NAME(m_hihatvol)); - m_adjuster_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(ad_59mc07_device::frq_adjuster_callback), this)); + m_adjuster_timer = timer_alloc(FUNC(ad_59mc07_device::frq_adjuster_callback), this); m_adjuster_timer->adjust(attotime::from_hz(60), 0, attotime::from_hz(60)); } |