summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mcr68.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mcr68.cpp')
-rw-r--r--src/mame/drivers/mcr68.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/mcr68.cpp b/src/mame/drivers/mcr68.cpp
index 7548f3513e0..859c316cff7 100644
--- a/src/mame/drivers/mcr68.cpp
+++ b/src/mame/drivers/mcr68.cpp
@@ -920,9 +920,8 @@ MACHINE_CONFIG_START(mcr68_state::mcr68)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", mcr68_state, scanline_cb, "screen", 0, 1)
- MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_mcr68)
- MCFG_PALETTE_ADD("palette", 64)
- MCFG_PALETTE_FORMAT(xxxxxxxRRRBBBGGG)
+ GFXDECODE(config, m_gfxdecode, "palette", gfx_mcr68);
+ PALETTE(config, "palette").set_format(palette_device::xRBG_333, 64);
MCFG_VIDEO_START_OVERRIDE(mcr68_state,mcr68)