summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/gridlee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gridlee.cpp')
-rw-r--r--src/mame/drivers/gridlee.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gridlee.cpp b/src/mame/drivers/gridlee.cpp
index e2c7413dbff..c064a7fb669 100644
--- a/src/mame/drivers/gridlee.cpp
+++ b/src/mame/drivers/gridlee.cpp
@@ -146,10 +146,10 @@ void gridlee_state::machine_start()
save_item(NAME(m_last_analog_input));
save_item(NAME(m_last_analog_output));
- m_irq_off = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(gridlee_state::irq_off_tick),this));
- m_irq_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(gridlee_state::irq_timer_tick),this));
- m_firq_off = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(gridlee_state::firq_off_tick),this));
- m_firq_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(gridlee_state::firq_timer_tick),this));
+ m_irq_off = timer_alloc(FUNC(gridlee_state::irq_off_tick), this);
+ m_irq_timer = timer_alloc(FUNC(gridlee_state::irq_timer_tick), this);
+ m_firq_off = timer_alloc(FUNC(gridlee_state::firq_off_tick), this);
+ m_firq_timer = timer_alloc(FUNC(gridlee_state::firq_timer_tick), this);
}