summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Pierpaolo Prazzoli <pierpaol@mamedev.org>2009-03-16 10:39:23 +0000
committer Pierpaolo Prazzoli <pierpaol@mamedev.org>2009-03-16 10:39:23 +0000
commit29a0fd90b4aa8abd1a8ac756c4ebf395bf8747d9 (patch)
treebc8e475632a20cd1d2a69338470e0c88bdace5ee
parentf69aebf4c4366956df7efd05fdf154bed46b31ac (diff)
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.
-rw-r--r--src/mame/video/retofinv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/video/retofinv.c b/src/mame/video/retofinv.c
index d2551b2da37..fd5f898a252 100644
--- a/src/mame/video/retofinv.c
+++ b/src/mame/video/retofinv.c
@@ -90,7 +90,6 @@ static TILE_GET_INFO( bg_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];
tileinfo->group = color;
@@ -99,7 +98,7 @@ static TILE_GET_INFO( fg_get_tile_info )
0,
retofinv_fg_videoram[tile_index] + 256 * fg_bank,
color,
- (tile_index < 0x40 || tile_index >= 0x3c0) ? TILE_FORCE_LAYER0 : 0);
+ 0);
}