From 2da078d7c3104257f281da21d17e6956caf4061c Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Fri, 10 Dec 2010 17:35:29 +0000 Subject: [PATCH] Fixed (?) end of spritelist marker in PGM [David Haywood] --- src/mame/video/pgm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/pgm.c b/src/mame/video/pgm.c index 860ffffe7a9..36c16402990 100644 --- a/src/mame/video/pgm.c +++ b/src/mame/video/pgm.c @@ -261,7 +261,7 @@ static void draw_sprites( running_machine *machine, bitmap_t* spritebitmap, UINT if (xpos > 0x3ff) xpos -=0x800; if (ypos > 0x1ff) ypos -=0x400; - if (high == 0) break; /* is this right? */ + if (!sprite_source[4]) break; /* is this right? */ //if ((priority == 1) && (pri == 0)) break;