summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/timeplt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/timeplt.cpp')
-rw-r--r--src/mame/drivers/timeplt.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/timeplt.cpp b/src/mame/drivers/timeplt.cpp
index 54c82909149..9239fec90bc 100644
--- a/src/mame/drivers/timeplt.cpp
+++ b/src/mame/drivers/timeplt.cpp
@@ -389,7 +389,7 @@ static const gfx_layout spritelayout =
};
-static GFXDECODE_START( timeplt )
+static GFXDECODE_START( gfx_timeplt )
GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 32 )
GFXDECODE_ENTRY( "gfx2", 0, spritelayout, 32*4, 64 )
GFXDECODE_END
@@ -405,7 +405,7 @@ static const gfx_layout chkun_spritelayout =
64*8
};
-static GFXDECODE_START( chkun )
+static GFXDECODE_START( gfx_chkun )
GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 32 )
GFXDECODE_ENTRY( "gfx2", 0, chkun_spritelayout, 32*4, 64 )
GFXDECODE_END
@@ -453,7 +453,7 @@ MACHINE_CONFIG_START(timeplt_state::timeplt)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, timeplt_state, vblank_irq))
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", timeplt)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_timeplt)
MCFG_PALETTE_ADD("palette", 32*4+64*4)
MCFG_PALETTE_INIT_OWNER(timeplt_state, timeplt)
@@ -485,7 +485,7 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(timeplt_state::bikkuric)
timeplt(config);
- MCFG_GFXDECODE_MODIFY("gfxdecode", chkun)
+ MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_chkun)
/* basic machine hardware */
MCFG_DEVICE_MODIFY("maincpu")
@@ -497,7 +497,7 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(timeplt_state::chkun)
bikkuric(config);
- MCFG_GFXDECODE_MODIFY("gfxdecode", chkun)
+ MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_chkun)
/* sound hardware */
MCFG_DEVICE_MODIFY("timeplt_audio:ay2")