summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cbuster.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cbuster.c')
-rw-r--r--src/mame/drivers/cbuster.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/cbuster.c b/src/mame/drivers/cbuster.c
index 64d902023a6..dd48f8d1d44 100644
--- a/src/mame/drivers/cbuster.c
+++ b/src/mame/drivers/cbuster.c
@@ -317,17 +317,20 @@ static MACHINE_CONFIG_START( twocrude, cbuster_state )
MCFG_SCREEN_UPDATE_DRIVER(cbuster_state, screen_update_twocrude)
MCFG_GFXDECODE_ADD("gfxdecode", cbuster)
- MCFG_PALETTE_LENGTH(2048)
+ MCFG_PALETTE_ADD("palette", 2048)
MCFG_DECO16IC_ADD("tilegen1", twocrude_deco16ic_tilegen1_intf)
MCFG_DECO16IC_GFXDECODE("gfxdecode")
+ MCFG_DECO16IC_PALETTE("palette")
MCFG_DECO16IC_ADD("tilegen2", twocrude_deco16ic_tilegen2_intf)
MCFG_DECO16IC_GFXDECODE("gfxdecode")
+ MCFG_DECO16IC_PALETTE("palette")
MCFG_DEVICE_ADD("spritegen", DECO_SPRITE, 0)
decospr_device::set_gfx_region(*device, 3);
MCFG_DECO_SPRITE_GFXDECODE("gfxdecode")
+ MCFG_DECO_SPRITE_PALETTE("palette")
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")