summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segaorun.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/segaorun.c')
-rw-r--r--src/mame/drivers/segaorun.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/segaorun.c b/src/mame/drivers/segaorun.c
index c8c0916497f..0e71a72406e 100644
--- a/src/mame/drivers/segaorun.c
+++ b/src/mame/drivers/segaorun.c
@@ -128,7 +128,7 @@ static TIMER_CALLBACK( delayed_sound_data_w )
static void sound_data_w(UINT8 data)
{
- timer_call_after_resynch(data, delayed_sound_data_w);
+ timer_call_after_resynch(NULL, data, delayed_sound_data_w);
}
@@ -213,7 +213,7 @@ static TIMER_CALLBACK( scanline_callback )
case 65:
case 129:
case 193:
- timer_set(video_screen_get_time_until_pos(0, scanline, machine->screen[0].visarea.max_x + 1), 0, irq2_gen);
+ timer_set(video_screen_get_time_until_pos(0, scanline, machine->screen[0].visarea.max_x + 1), NULL, 0, irq2_gen);
next_scanline = scanline + 1;
break;
@@ -244,7 +244,7 @@ static TIMER_CALLBACK( scanline_callback )
update_main_irqs();
/* come back at the next targeted scanline */
- timer_set(video_screen_get_time_until_pos(0, next_scanline, 0), next_scanline, scanline_callback);
+ timer_set(video_screen_get_time_until_pos(0, next_scanline, 0), NULL, next_scanline, scanline_callback);
}
@@ -275,7 +275,7 @@ static MACHINE_RESET( outrun )
cpunum_set_info_fct(0, CPUINFO_PTR_M68K_RESET_CALLBACK, (genf *)outrun_reset);
/* start timers to track interrupts */
- timer_set(video_screen_get_time_until_pos(0, 223, 0), 223, scanline_callback);
+ timer_set(video_screen_get_time_until_pos(0, 223, 0), NULL, 223, scanline_callback);
}