summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/beathead.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/beathead.c')
-rw-r--r--src/mame/drivers/beathead.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/beathead.c b/src/mame/drivers/beathead.c
index 17384e371c9..8d0700b6349 100644
--- a/src/mame/drivers/beathead.c
+++ b/src/mame/drivers/beathead.c
@@ -156,7 +156,7 @@ static TIMER_CALLBACK( scanline_callback )
update_interrupts();
/* set the timer for the next one */
- timer_set(double_to_attotime(attotime_to_double(video_screen_get_time_until_pos(0, scanline, 0)) - hblank_offset), scanline, scanline_callback);
+ timer_set(double_to_attotime(attotime_to_double(video_screen_get_time_until_pos(0, scanline, 0)) - hblank_offset), NULL, scanline, scanline_callback);
}
@@ -173,7 +173,7 @@ static MACHINE_RESET( beathead )
/* compute the timing of the HBLANK interrupt and set the first timer */
hblank_offset = attotime_to_double(video_screen_get_scan_period(0)) * ((455. - 336. - 25.) / 455.);
- timer_set(double_to_attotime(attotime_to_double(video_screen_get_time_until_pos(0, 0, 0)) - hblank_offset), 0, scanline_callback);
+ timer_set(double_to_attotime(attotime_to_double(video_screen_get_time_until_pos(0, 0, 0)) - hblank_offset), NULL, 0, scanline_callback);
/* reset IRQs */
irq_line_state = CLEAR_LINE;