mirror of
https://github.com/holub/mame
synced 2025-05-04 05:23:22 +03:00
01187: gseeker: In attract mode, there is a priority error where a stealth bomber is coming out of a hanger.
This commit is contained in:
parent
3e245f35a9
commit
d9988a4f21
@ -2557,11 +2557,13 @@ static void scanline_draw(running_machine *machine, bitmap_t *bitmap, const rect
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
sprite priority==playfield priority
|
sprite priority==playfield priority
|
||||||
|
GSEEKER (plane leaving hangar) --> sprite
|
||||||
BUBSYMPH (title) ---> sprite
|
BUBSYMPH (title) ---> sprite
|
||||||
DARIUSG (ZONE V' BOSS) ---> playfield
|
DARIUSG (ZONE V' BOSS) ---> playfield
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (f3_game == BUBSYMPH ) sp++; //BUBSYMPH (title)
|
if (f3_game == BUBSYMPH ) sp++; //BUBSYMPH (title)
|
||||||
|
if (f3_game == GSEEKER ) sp++; //GSEEKER (plane leaving hangar)
|
||||||
|
|
||||||
if( sp>l0) sprite[0]|=sflg;
|
if( sp>l0) sprite[0]|=sflg;
|
||||||
else if(sp<=l0 && sp>l1) sprite[1]|=sflg;
|
else if(sp<=l0 && sp>l1) sprite[1]|=sflg;
|
||||||
|
Loading…
Reference in New Issue
Block a user