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/champbwl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mame/drivers/champbwl.cpp') diff --git a/src/mame/drivers/champbwl.cpp b/src/mame/drivers/champbwl.cpp index 7421993c1f7..369d0fdb1b6 100644 --- a/src/mame/drivers/champbwl.cpp +++ b/src/mame/drivers/champbwl.cpp @@ -446,7 +446,7 @@ static const gfx_layout charlayout = 32*8 }; -static GFXDECODE_START( champbwl ) +static GFXDECODE_START( gfx_champbwl ) GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 32 ) GFXDECODE_END @@ -512,7 +512,7 @@ MACHINE_CONFIG_START(champbwl_state::champbwl) MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, champbwl_state, screen_vblank_champbwl)) MCFG_SCREEN_PALETTE("palette") - MCFG_GFXDECODE_ADD("gfxdecode", "palette", champbwl) + MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_champbwl) MCFG_PALETTE_ADD("palette", 512) MCFG_PALETTE_INIT_OWNER(champbwl_state,champbwl) @@ -577,7 +577,7 @@ MACHINE_CONFIG_START(champbwl_state::doraemon) MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(*this, champbwl_state, screen_vblank_doraemon)) MCFG_SCREEN_PALETTE("palette") - MCFG_GFXDECODE_ADD("gfxdecode", "palette", champbwl) + MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_champbwl) MCFG_PALETTE_ADD("palette", 512) MCFG_PALETTE_INIT_OWNER(champbwl_state,champbwl) -- cgit v1.2.3