diff options
Diffstat (limited to 'src/mame/drivers/sym1.cpp')
-rw-r--r-- | src/mame/drivers/sym1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/sym1.cpp b/src/mame/drivers/sym1.cpp index 04327694839..8c07ffa0e33 100644 --- a/src/mame/drivers/sym1.cpp +++ b/src/mame/drivers/sym1.cpp @@ -352,7 +352,7 @@ void sym1_state::init_sym1() bank->set_entry(1); // allocate a timer to refresh the led display - m_led_update = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(sym1_state::led_refresh), this)); + m_led_update = timer_alloc(FUNC(sym1_state::led_refresh), this); } void sym1_state::machine_reset() |