From f1f0591f43f381123e8d9ec20c52eb7c0c332c79 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 29 Dec 2018 05:53:50 +1100 Subject: Start cleaning up palette configuration: * Basically, initialisers go in the constructor arguments, and things for setting format go in set_format. * Initialisation patterns can be specified with an enum discriminator or with a FUNC and optionally a tag. * Formats can be specified with an enum discriminator or a size and function pointer. * You must always supply the number of entries when setting the format. * When initislising with a paletter initialisation member, you can specify the entries and indirecte entries together. * The palette_device now has a standard constructor, so use .set_entries if you are specifying entry count with no format/initialisation. * Also killed an overload on delegates that wasn't being useful. --- src/mame/drivers/exprraid.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/exprraid.cpp') diff --git a/src/mame/drivers/exprraid.cpp b/src/mame/drivers/exprraid.cpp index 6c4d5e8ea1f..afa6a43eb3f 100644 --- a/src/mame/drivers/exprraid.cpp +++ b/src/mame/drivers/exprraid.cpp @@ -511,10 +511,10 @@ MACHINE_CONFIG_START(exprraid_state::exprraid) // MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 1*8, 31*8-1) MCFG_SCREEN_RAW_PARAMS(XTAL(12'000'000)/2, 384, 0, 256, 262, 8, 256-8) /* not accurate */ MCFG_SCREEN_UPDATE_DRIVER(exprraid_state, screen_update_exprraid) - MCFG_SCREEN_PALETTE("palette") + MCFG_SCREEN_PALETTE(m_palette) MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_exprraid) - MCFG_PALETTE_ADD_RRRRGGGGBBBB_PROMS("palette", "proms", 256) + PALETTE(config, m_palette, palette_device::RGB_444_PROMS, "proms", 256); /* sound hardware */ SPEAKER(config, "mono").front_center(); -- cgit v1.2.3