summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-12-24 21:49:38 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-12-24 21:49:38 +0000
commit7e812d10d32fb891c6ea7855ed5446c2c294595b (patch)
tree31ffcf10647e5e6a262439c1bca0f1b32166afd3 /src/mame/video
parent27ea28c63b15132d10888d4aead964f3718cfb23 (diff)
Clean-ups and version bumpmame0144u4
Diffstat (limited to 'src/mame/video')
-rw-r--r--src/mame/video/system1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/system1.c b/src/mame/video/system1.c
index 60bbb461470..03e289a2eef 100644
--- a/src/mame/video/system1.c
+++ b/src/mame/video/system1.c
@@ -458,7 +458,7 @@ static void draw_sprites(running_machine &machine, bitmap_t *bitmap, const recta
if (effx >= cliprect->min_x && effx <= cliprect->max_x)
{
int prevpix = destbase[effx];
-
+
if ((prevpix & 0x0f) != 0)
state->m_sprite_collide[((prevpix >> 4) & 0x1f) + 32 * spritenum] = state->m_sprite_collide_summary = 1;
destbase[effx] = color1 | palettebase;
@@ -479,7 +479,7 @@ static void draw_sprites(running_machine &machine, bitmap_t *bitmap, const recta
if (effx >= cliprect->min_x && effx <= cliprect->max_x)
{
int prevpix = destbase[effx];
-
+
if ((prevpix & 0x0f) != 0)
state->m_sprite_collide[((prevpix >> 4) & 0x1f) + 32 * spritenum] = state->m_sprite_collide_summary = 1;
destbase[effx] = color2 | palettebase;