cischeat fix, issue was that shadow flag was not set, anyway doing modify is proper thing to do (nw)

This commit is contained in:
Miodrag Milanovic 2014-03-01 09:21:23 +00:00
parent 5de61ed998
commit cb610cb8cf

View File

@ -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")