From 0610cdac0a79f6c33d0b140a3169430e1a43dad2 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Tue, 14 Jul 2009 23:22:05 +0000 Subject: [PATCH] Fix frame number timing for gottlieb games. --- src/mame/drivers/gottlieb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/gottlieb.c b/src/mame/drivers/gottlieb.c index 9195ab7bc6e..df6370b4a4a 100644 --- a/src/mame/drivers/gottlieb.c +++ b/src/mame/drivers/gottlieb.c @@ -468,7 +468,7 @@ static TIMER_CALLBACK( laserdisc_philips_callback ) /* toggle to the next one */ param = (param == 17) ? 18 : 17; - timer_adjust_oneshot(laserdisc_philips_timer, video_screen_get_time_until_pos(machine->primary_screen, param, 0), param); + timer_adjust_oneshot(laserdisc_philips_timer, video_screen_get_time_until_pos(machine->primary_screen, param * 2, 0), param); }