From 23325728009b85bad264dcc175c8f1b8c5e51678 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 15 May 2018 05:43:28 +1000 Subject: More cleanup/streamlining of machine configuration and macros: * Get rid of implicit prefix for GFX decode names and prefix them all * Get rid of special macro for adding GFXDECODE in favour of constructor * Make empty GFX decode a static member of interface * Allow palette to be specified to GFXDECODE as a device finder * Removed diserial.h from emu.h as it's used relatively infrequently Also fix darkseal and vaportra propely. The palette device automatically attaches itself to a share with matching tag. The correct solution here is to rename one or the other out of the way, since it was never attached to a share before. --- src/mame/drivers/brkthru.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mame/drivers/brkthru.cpp') diff --git a/src/mame/drivers/brkthru.cpp b/src/mame/drivers/brkthru.cpp index 2ababee4150..4253dde6cbc 100644 --- a/src/mame/drivers/brkthru.cpp +++ b/src/mame/drivers/brkthru.cpp @@ -330,7 +330,7 @@ static const gfx_layout spritelayout = 32*8 /* every sprite takes 32 consecutive bytes */ }; -static GFXDECODE_START( brkthru ) +static GFXDECODE_START( gfx_brkthru ) GFXDECODE_ENTRY( "gfx1", 0x00000, charlayout, 0x00, 1 ) /* use colors 0x00-0x07 */ GFXDECODE_ENTRY( "gfx2", 0x00000, tilelayout1, 0x80, 16 ) /* use colors 0x80-0xff */ GFXDECODE_ENTRY( "gfx2", 0x01000, tilelayout2, 0x80, 16 ) @@ -384,7 +384,7 @@ MACHINE_CONFIG_START(brkthru_state::brkthru) /* video hardware */ - MCFG_GFXDECODE_ADD("gfxdecode", "palette", brkthru) + MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_brkthru) MCFG_PALETTE_ADD("palette", 256) MCFG_PALETTE_INIT_OWNER(brkthru_state, brkthru) @@ -425,7 +425,7 @@ MACHINE_CONFIG_START(brkthru_state::darwin) /* video hardware */ - MCFG_GFXDECODE_ADD("gfxdecode", "palette", brkthru) + MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_brkthru) MCFG_PALETTE_ADD("palette", 256) MCFG_PALETTE_INIT_OWNER(brkthru_state, brkthru) -- cgit v1.2.3