summaryrefslogtreecommitdiffstats
path: root/src/mame/video/spectrum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/spectrum.cpp')
-rw-r--r--src/mame/video/spectrum.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/video/spectrum.cpp b/src/mame/video/spectrum.cpp
index 3bb40efe737..70ecf5249ed 100644
--- a/src/mame/video/spectrum.cpp
+++ b/src/mame/video/spectrum.cpp
@@ -24,7 +24,8 @@
***************************************************************************/
void spectrum_state::video_start()
{
- m_irq_off_timer = timer_alloc(TIMER_IRQ_OFF);
+ m_irq_on_timer = timer_alloc(FUNC(spectrum_state::irq_on), this);
+ m_irq_off_timer = timer_alloc(FUNC(spectrum_state::irq_off), this);
m_frame_invert_count = 16;
m_screen_location = m_video_ram;