From d9988a4f2184bd9cd3d02a07467404639baee0b3 Mon Sep 17 00:00:00 2001 From: Couriersud Date: Fri, 26 Sep 2008 07:48:21 +0000 Subject: [PATCH] 01187: gseeker: In attract mode, there is a priority error where a stealth bomber is coming out of a hanger. --- src/mame/video/taito_f3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mame/video/taito_f3.c b/src/mame/video/taito_f3.c index 166495c7307..198346299a5 100644 --- a/src/mame/video/taito_f3.c +++ b/src/mame/video/taito_f3.c @@ -2557,11 +2557,13 @@ static void scanline_draw(running_machine *machine, bitmap_t *bitmap, const rect /* sprite priority==playfield priority + GSEEKER (plane leaving hangar) --> sprite BUBSYMPH (title) ---> sprite DARIUSG (ZONE V' BOSS) ---> playfield */ if (f3_game == BUBSYMPH ) sp++; //BUBSYMPH (title) + if (f3_game == GSEEKER ) sp++; //GSEEKER (plane leaving hangar) if( sp>l0) sprite[0]|=sflg; else if(sp<=l0 && sp>l1) sprite[1]|=sflg;