summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/exidy440.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/exidy440.c')
-rw-r--r--src/mame/video/exidy440.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/exidy440.c b/src/mame/video/exidy440.c
index d2f1f27d07b..84565c86b04 100644
--- a/src/mame/video/exidy440.c
+++ b/src/mame/video/exidy440.c
@@ -354,7 +354,7 @@ static void draw_sprites(running_machine *machine, mame_bitmap *bitmap, const re
/* check the collisions bit */
if ((palette[2 * pen] & 0x80) && count++ < 128)
- timer_set(video_screen_get_time_until_pos(0, yoffs, currx), currx, collide_firq_callback);
+ timer_set(video_screen_get_time_until_pos(0, yoffs, currx), NULL, currx, collide_firq_callback);
}
currx++;
@@ -367,7 +367,7 @@ static void draw_sprites(running_machine *machine, mame_bitmap *bitmap, const re
/* check the collisions bit */
if ((palette[2 * pen] & 0x80) && count++ < 128)
- timer_set(video_screen_get_time_until_pos(0, yoffs, currx), currx, collide_firq_callback);
+ timer_set(video_screen_get_time_until_pos(0, yoffs, currx), NULL, currx, collide_firq_callback);
}
currx++;
}
@@ -456,7 +456,7 @@ VIDEO_EOF( exidy440 )
time = attotime_sub(video_screen_get_time_until_pos(0, beamy, beamx), attotime_make(0, increment * 6));
for (i = 0; i <= 12; i++)
{
- timer_set(time, beamx, beam_firq_callback);
+ timer_set(time, NULL, beamx, beam_firq_callback);
time = attotime_add(time, attotime_make(0, increment));
}
}