summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/holeland.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/holeland.cpp')
-rw-r--r--src/mame/drivers/holeland.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/holeland.cpp b/src/mame/drivers/holeland.cpp
index 2acd73c1027..f15efd7987e 100644
--- a/src/mame/drivers/holeland.cpp
+++ b/src/mame/drivers/holeland.cpp
@@ -263,12 +263,12 @@ static const gfx_layout crzrally_spritelayout =
8*16
};
-static GFXDECODE_START( holeland )
+static GFXDECODE_START( gfx_holeland )
GFXDECODE_ENTRY( "gfx1", 0, holeland_charlayout, 0, 256 )
GFXDECODE_ENTRY( "gfx2", 0, holeland_spritelayout, 0, 256 )
GFXDECODE_END
-static GFXDECODE_START( crzrally )
+static GFXDECODE_START( gfx_crzrally )
GFXDECODE_ENTRY( "gfx1", 0, crzrally_charlayout, 0, 256 )
GFXDECODE_ENTRY( "gfx2", 0, crzrally_spritelayout, 0, 256 )
GFXDECODE_END
@@ -299,7 +299,7 @@ MACHINE_CONFIG_START(holeland_state::holeland)
MCFG_SCREEN_UPDATE_DRIVER(holeland_state, screen_update_holeland)
MCFG_SCREEN_PALETTE("palette")
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", holeland)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_holeland)
MCFG_PALETTE_ADD_RRRRGGGGBBBB_PROMS("palette", "proms", 256)
MCFG_VIDEO_START_OVERRIDE(holeland_state,holeland)
@@ -380,7 +380,7 @@ MACHINE_CONFIG_START(holeland_state::crzrally)
MCFG_SCREEN_UPDATE_DRIVER(holeland_state, screen_update_crzrally)
MCFG_SCREEN_PALETTE("palette")
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", crzrally)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_crzrally)
MCFG_PALETTE_ADD_RRRRGGGGBBBB_PROMS("palette", "proms", 256)
MCFG_VIDEO_START_OVERRIDE(holeland_state,crzrally)