summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/namcofl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/namcofl.c')
-rw-r--r--src/mame/drivers/namcofl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/namcofl.c b/src/mame/drivers/namcofl.c
index 621bb6da71b..16f989c19cf 100644
--- a/src/mame/drivers/namcofl.c
+++ b/src/mame/drivers/namcofl.c
@@ -314,14 +314,14 @@ GFXDECODE_END
static TIMER_CALLBACK( network_interrupt_callback )
{
cpunum_set_input_line(0, I960_IRQ0, ASSERT_LINE);
- timer_set(video_screen_get_frame_period(0), 0, network_interrupt_callback);
+ timer_set(video_screen_get_frame_period(0), NULL, 0, network_interrupt_callback);
}
static TIMER_CALLBACK( vblank_interrupt_callback )
{
cpunum_set_input_line(0, I960_IRQ2, ASSERT_LINE);
- timer_set(video_screen_get_frame_period(0), 0, vblank_interrupt_callback);
+ timer_set(video_screen_get_frame_period(0), NULL, 0, vblank_interrupt_callback);
}
@@ -335,14 +335,14 @@ static TIMER_CALLBACK( raster_interrupt_callback )
static MACHINE_START( namcofl )
{
- raster_interrupt_timer = timer_alloc(raster_interrupt_callback);
+ raster_interrupt_timer = timer_alloc(raster_interrupt_callback, NULL);
}
static MACHINE_RESET( namcofl )
{
- timer_set(video_screen_get_time_until_pos(0, machine->screen[0].visarea.max_y + 3, 0), 0, network_interrupt_callback);
- timer_set(video_screen_get_time_until_pos(0, machine->screen[0].visarea.max_y + 1, 0), 0, vblank_interrupt_callback);
+ timer_set(video_screen_get_time_until_pos(0, machine->screen[0].visarea.max_y + 3, 0), NULL, 0, network_interrupt_callback);
+ timer_set(video_screen_get_time_until_pos(0, machine->screen[0].visarea.max_y + 1, 0), NULL, 0, vblank_interrupt_callback);
}