summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/h01x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/h01x.cpp')
-rw-r--r--src/mame/drivers/h01x.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/h01x.cpp b/src/mame/drivers/h01x.cpp
index d8aac2a3898..c2c9625c48c 100644
--- a/src/mame/drivers/h01x.cpp
+++ b/src/mame/drivers/h01x.cpp
@@ -444,7 +444,7 @@ void h01x_state::machine_start()
save_item(NAME(m_bank));
save_item(NAME(m_cassette_data));
- m_cassette_data_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(h01x_state::cassette_data_callback), this));
+ m_cassette_data_timer = timer_alloc(FUNC(h01x_state::cassette_data_callback), this);
m_cassette_data_timer->adjust(attotime::zero, 0, attotime::from_hz(48000));
}