summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/magmax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/magmax.cpp')
-rw-r--r--src/mame/drivers/magmax.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/magmax.cpp b/src/mame/drivers/magmax.cpp
index 1c92779f1eb..033dfca8eb4 100644
--- a/src/mame/drivers/magmax.cpp
+++ b/src/mame/drivers/magmax.cpp
@@ -322,7 +322,7 @@ static const gfx_layout spritelayout =
64*8
};
-static GFXDECODE_START( magmax )
+static GFXDECODE_START( gfx_magmax )
GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 1 ) /*no color codes*/
GFXDECODE_ENTRY( "gfx2", 0, spritelayout, 1*16, 16 ) /*16 color codes*/
GFXDECODE_END
@@ -350,7 +350,7 @@ MACHINE_CONFIG_START(magmax_state::magmax)
MCFG_SCREEN_UPDATE_DRIVER(magmax_state, screen_update_magmax)
MCFG_SCREEN_PALETTE("palette")
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", magmax)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_magmax)
MCFG_PALETTE_ADD("palette", 1*16 + 16*16 + 256)
MCFG_PALETTE_INDIRECT_ENTRIES(256)
MCFG_PALETTE_INIT_OWNER(magmax_state, magmax)