summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fitfight.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fitfight.cpp')
-rw-r--r--src/mame/drivers/fitfight.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/fitfight.cpp b/src/mame/drivers/fitfight.cpp
index 6972366f1b6..acecff7ad7b 100644
--- a/src/mame/drivers/fitfight.cpp
+++ b/src/mame/drivers/fitfight.cpp
@@ -698,7 +698,7 @@ static const gfx_layout bbprot_sprite_layout =
16*16
};
-static GFXDECODE_START( fitfight )
+static GFXDECODE_START( gfx_fitfight )
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x000, 256 ) /* tx tiles */
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x200, 256 ) /* mid tiles */
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x400, 256 ) /* bg tiles */
@@ -706,7 +706,7 @@ static GFXDECODE_START( fitfight )
GFXDECODE_END
-static GFXDECODE_START( prot )
+static GFXDECODE_START( gfx_prot )
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x0000, 256 ) /* tx tiles */
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x0800, 256 ) /* mid tiles */
GFXDECODE_ENTRY( "gfx1", 0, fof_tile_layout, 0x1000, 256 ) /* bg tiles */
@@ -741,7 +741,7 @@ MACHINE_CONFIG_START(fitfight_state::fitfight)
MCFG_UPD7810_PORTC_WRITE_CB(WRITE8(*this, fitfight_state, snd_portc_w))
MCFG_DEVICE_VBLANK_INT_DRIVER("screen", fitfight_state, snd_irq)
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", fitfight)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_fitfight)
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(60)
@@ -768,7 +768,7 @@ MACHINE_CONFIG_START(fitfight_state::bbprot)
MCFG_DEVICE_VBLANK_INT_DRIVER("screen", fitfight_state, irq2_line_hold)
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", prot)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_prot)
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_REFRESH_RATE(60)