From fe6a5c5813e9a5c257e94a10806315f9f761423b Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Wed, 31 Aug 2011 16:47:19 +0000 Subject: [PATCH] Fixed MT Bugs: 04475: quizmeku: Missing gfx 03641: sspirits, gground: Only half of the game's frames are rendered. 03195: crkdown: graphic artifacts and speed drop during gameplay --- src/mame/video/segaic24.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/segaic24.c b/src/mame/video/segaic24.c index 2dcab9e743c..f2404ead283 100644 --- a/src/mame/video/segaic24.c +++ b/src/mame/video/segaic24.c @@ -637,7 +637,7 @@ void segas24_sprite::draw(bitmap_t *bitmap, const rectangle *cliprect, const int curspr = source[0]; type = curspr & 0xc000; - curspr &= 0x03ff; + curspr &= 0x1fff; if(type == 0xc000) break;