From cb610cb8cf862c8657e38bc832b81a8ade3994cc Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 1 Mar 2014 09:21:23 +0000 Subject: [PATCH] cischeat fix, issue was that shadow flag was not set, anyway doing modify is proper thing to do (nw) --- src/mame/drivers/cischeat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/cischeat.c b/src/mame/drivers/cischeat.c index 384d6f5ce30..998bfba1ea4 100644 --- a/src/mame/drivers/cischeat.c +++ b/src/mame/drivers/cischeat.c @@ -1622,8 +1622,8 @@ static MACHINE_CONFIG_DERIVED( cischeat, bigrun ) MCFG_SCREEN_UPDATE_DRIVER(cischeat_state, screen_update_cischeat) MCFG_GFXDECODE_MODIFY("gfxdecode", cischeat) - MCFG_DEVICE_REMOVE("palette") - MCFG_PALETTE_ADD("palette", 32*16 * 3 + 64*16 * 2 + 128*16) /* scroll 0,1,2; road 0,1; sprites */ + MCFG_PALETTE_MODIFY("palette") + MCFG_PALETTE_ENTRIES(32*16 * 3 + 64*16 * 2 + 128*16) /* scroll 0,1,2; road 0,1; sprites */ MCFG_VIDEO_START_OVERRIDE(cischeat_state,cischeat) MACHINE_CONFIG_END @@ -1649,8 +1649,8 @@ static MACHINE_CONFIG_DERIVED( f1gpstar, bigrun ) /* video hardware */ MCFG_GFXDECODE_MODIFY("gfxdecode", f1gpstar) - MCFG_DEVICE_REMOVE("palette") - MCFG_PALETTE_ADD("palette", 16*16 * 3 + 64*16 * 2 + 128*16) /* scroll 0,1,2; road 0,1; sprites */ + MCFG_PALETTE_MODIFY("palette") + MCFG_PALETTE_ENTRIES(16*16 * 3 + 64*16 * 2 + 128*16) /* scroll 0,1,2; road 0,1; sprites */ MCFG_VIDEO_START_OVERRIDE(cischeat_state,f1gpstar) MCFG_SCREEN_MODIFY("screen")