From 8d1ffc9677f513da4bda481dd2e5d67021043479 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Sat, 14 Jan 2012 00:39:13 +0000 Subject: Death to SCREEN_EOF, which was ambiguously called either at the start or end of VBLANK depending on the video flag VIDEO_UPDATE_AFTER_VBLANK. Replaced with SCREEN_VBLANK callbacks which are called both at the start and end of VBLANK, so you can operate either way, and be explicit about it. Updated all callers. Also updated screen_device to use device timers and some other minor cleanups. --- src/mame/includes/starshp1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/includes/starshp1.h') diff --git a/src/mame/includes/starshp1.h b/src/mame/includes/starshp1.h index 7108bab908b..fc28aef92cf 100644 --- a/src/mame/includes/starshp1.h +++ b/src/mame/includes/starshp1.h @@ -73,7 +73,7 @@ WRITE8_HANDLER( starshp1_playfield_w ); PALETTE_INIT( starshp1 ); SCREEN_UPDATE_IND16( starshp1 ); -SCREEN_EOF( starshp1 ); +SCREEN_VBLANK( starshp1 ); VIDEO_START( starshp1 ); -- cgit v1.2.3