summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/bbc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bbc.cpp')
-rw-r--r--src/mame/machine/bbc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/bbc.cpp b/src/mame/machine/bbc.cpp
index 3cd5f5f24c1..3bc221a57c1 100644
--- a/src/mame/machine/bbc.cpp
+++ b/src/mame/machine/bbc.cpp
@@ -1374,8 +1374,8 @@ void bbc_state::init_bbc()
m_nr_high_tones = 0;
m_serproc_data = 0;
m_cass_out_enabled = 0;
- m_tape_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(bbc_state::tape_timer_cb), this));
- m_reset_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(bbc_state::reset_timer_cb), this));
+ m_tape_timer = timer_alloc(FUNC(bbc_state::tape_timer_cb), this);
+ m_reset_timer = timer_alloc(FUNC(bbc_state::reset_timer_cb), this);
/* vertical sync pulse from video circuit */
m_via6522_0->write_ca1(1);