summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/svision.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/svision.cpp')
-rw-r--r--src/mame/drivers/svision.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/svision.cpp b/src/mame/drivers/svision.cpp
index d4b2dea971c..98541f08d10 100644
--- a/src/mame/drivers/svision.cpp
+++ b/src/mame/drivers/svision.cpp
@@ -430,17 +430,17 @@ WRITE_LINE_MEMBER(svision_state::frame_int_w)
void svision_state::init_svision()
{
- m_svision.timer1 = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(svision_state::svision_timer),this));
+ m_svision.timer1 = timer_alloc(FUNC(svision_state::svision_timer), this);
m_dma_finished = false;
m_pet.on = false;
}
void svision_state::init_svisions()
{
- m_svision.timer1 = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(svision_state::svision_timer),this));
+ m_svision.timer1 = timer_alloc(FUNC(svision_state::svision_timer), this);
m_dma_finished = false;
m_pet.on = true;
- m_pet.timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(svision_state::svision_pet_timer),this));
+ m_pet.timer = timer_alloc(FUNC(svision_state::svision_pet_timer), this);
}
DEVICE_IMAGE_LOAD_MEMBER( svision_state::cart_load )