diff options
Diffstat (limited to 'src/mame/drivers/cops.cpp')
-rw-r--r-- | src/mame/drivers/cops.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cops.cpp b/src/mame/drivers/cops.cpp index ac23064fdf7..e118dd5ce89 100644 --- a/src/mame/drivers/cops.cpp +++ b/src/mame/drivers/cops.cpp @@ -876,7 +876,7 @@ void cops_state::machine_start() { m_digits.resolve(); - m_ld_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(cops_state::ld_timer_callback),this)); + m_ld_timer = timer_alloc(FUNC(cops_state::ld_timer_callback), this); m_ld_timer->adjust(attotime::from_hz(167*5), 0, attotime::from_hz(167*5)); |