summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/segag80r.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/segag80r.c')
-rw-r--r--src/mame/video/segag80r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/segag80r.c b/src/mame/video/segag80r.c
index c91bcddb311..4004faf1419 100644
--- a/src/mame/video/segag80r.c
+++ b/src/mame/video/segag80r.c
@@ -53,7 +53,7 @@ static void vblank_latch_set(void)
/* set a timer to mimic the 555 timer that drives the EDGINT signal */
/* the 555 is run in monostable mode with R=56000 and C=1000pF */
vblank_latch = 1;
- timer_set(PERIOD_OF_555_MONOSTABLE(CAP_P(1000), RES_K(56)), 0, vblank_latch_clear);
+ timer_set(PERIOD_OF_555_MONOSTABLE(CAP_P(1000), RES_K(56)), NULL, 0, vblank_latch_clear);
/* latch the current flip state at the same time */
video_flip = video_control & 1;