Same assertion fixes for wwfsstar/wwfwfest drivers.

This commit is contained in:
Aaron Giles 2009-01-02 00:48:18 +00:00
parent 78f5d6e9ea
commit d52a995f15
2 changed files with 4 additions and 2 deletions

View File

@ -268,6 +268,7 @@ static TIMER_DEVICE_CALLBACK( wwfsstar_scanline )
/* An interrupt is generated every 16 scanlines */
if (scanline % 16 == 0)
{
if (scanline > 0)
video_screen_update_partial(timer->machine->primary_screen, scanline - 1);
cpu_set_input_line(timer->machine->cpu[0], 5, ASSERT_LINE);
}

View File

@ -351,6 +351,7 @@ static TIMER_DEVICE_CALLBACK( wwfwfest_scanline )
/* An interrupt is generated every 16 scanlines */
if (scanline % 16 == 0)
{
if (scanline > 0)
video_screen_update_partial(timer->machine->primary_screen, scanline - 1);
cpu_set_input_line(timer->machine->cpu[0], 2, ASSERT_LINE);
}