summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2009-03-03 23:52:09 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2009-03-03 23:52:09 +0000
commite7fe657c23001cac01c3bed8e06c43b3cad85f95 (patch)
tree025de365dda56ce2aab712cd4fce6d407f997b97 /src
parent4158c36ac38282bc6a73b939c405417796fbb516 (diff)
Fixed sprite colors for Zero Target [Angelo Salese]
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/cntsteer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cntsteer.c b/src/mame/drivers/cntsteer.c
index 2c30f84322b..44403dffc67 100644
--- a/src/mame/drivers/cntsteer.c
+++ b/src/mame/drivers/cntsteer.c
@@ -105,7 +105,7 @@ static void draw_sprites(running_machine *machine, bitmap_t *bitmap, const recta
sx = (spriteram[offs+2]);
sy = 0xf0 - spriteram[offs];
- color = ((spriteram[offs+1] & 0x08) >> 3);
+ color = 0x10+((spriteram[offs+1] & 0x20) >> 4) + ((spriteram[offs+1] & 0x8)>>3); //trusted.
fx = !(spriteram[offs+1] & 0x04);
fy = (spriteram[offs+1] & 0x02); //check
@@ -146,7 +146,7 @@ static void draw_sprites(running_machine *machine, bitmap_t *bitmap, const recta
static VIDEO_UPDATE( zerotrgt )
{
if(disable_roz)
- bitmap_fill(bitmap, cliprect, screen->machine->pens[8*bg_color_bank]); //guess, might just be 0
+ bitmap_fill(bitmap, cliprect, screen->machine->pens[8*bg_color_bank]);
else
{
tilemap_draw_roz(bitmap, cliprect, bg_tilemap,
@@ -371,7 +371,7 @@ static const gfx_layout sprites =
16,16,
RGN_FRAC(1,3),
3,
- { RGN_FRAC(2,3), RGN_FRAC(1,3), RGN_FRAC(0,3) },
+ { RGN_FRAC(0,3), RGN_FRAC(1,3), RGN_FRAC(2,3) },
{ 16*8, 1+16*8, 2+16*8, 3+16*8, 4+16*8, 5+16*8, 6+16*8, 7+16*8,
0, 1, 2, 3, 4, 5, 6, 7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 ,8*8,9*8,10*8,11*8,12*8,13*8,14*8,15*8 },