03026: retofinv, retofin1, retofin2: The remaining lives are not shown. [Pierpaolo Prazzoli]

-----------------

I played several levels and I haven't find any obvious bug after removing the TILEMAP_FORCE_LAYER0 flag.
This commit is contained in:
Pierpaolo Prazzoli 2009-03-16 10:39:23 +00:00
parent f69aebf4c4
commit 29a0fd90b4

View File

@ -90,7 +90,6 @@ static TILE_GET_INFO( bg_get_tile_info )
static TILE_GET_INFO( fg_get_tile_info ) static TILE_GET_INFO( fg_get_tile_info )
{ {
/* not sure about the transparency thing, but it makes sense */
int color = retofinv_fg_videoram[0x400 + tile_index]; int color = retofinv_fg_videoram[0x400 + tile_index];
tileinfo->group = color; tileinfo->group = color;
@ -99,7 +98,7 @@ static TILE_GET_INFO( fg_get_tile_info )
0, 0,
retofinv_fg_videoram[tile_index] + 256 * fg_bank, retofinv_fg_videoram[tile_index] + 256 * fg_bank,
color, color,
(tile_index < 0x40 || tile_index >= 0x3c0) ? TILE_FORCE_LAYER0 : 0); 0);
} }