From 6dd2c248cdfaea95611ef4ebc067a70c5b9f1596 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 9 Apr 2009 16:30:32 +0000 Subject: [PATCH] Reverted patch. --- src/mame/video/mcatadv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/video/mcatadv.c b/src/mame/video/mcatadv.c index e87860178f9..088568c9891 100644 --- a/src/mame/video/mcatadv.c +++ b/src/mame/video/mcatadv.c @@ -132,13 +132,13 @@ static void draw_sprites( running_machine *machine, bitmap_t *bitmap, const rect if((priline[drawxpos] < pri)) { if (offset >= 0x500000*2) offset = 0; pix = sprdata[offset/2]; - + if (offset & 1) pix = pix >> 4; pix &= 0x0f; if ((drawxpos >= cliprect->min_x) && (drawxpos <= cliprect->max_x) && pix) - destline[drawxpos] = (pix + pen); - } + destline[drawxpos] = (pix + (pen << 4)); + } offset++; } }