specimx palette fix (nw)

This commit is contained in:
Miodrag Milanovic 2012-12-13 11:05:33 +00:00
parent c1590183d7
commit 0d79f42f8a
2 changed files with 2 additions and 1 deletions

View File

@ -414,7 +414,6 @@ static MACHINE_CONFIG_START( special, special_state )
MCFG_VIDEO_START_OVERRIDE(special_state,special)
MCFG_SCREEN_UPDATE_DRIVER(special_state, screen_update_special)
MCFG_PALETTE_LENGTH(2)
MCFG_PALETTE_INIT(black_and_white)
/* audio hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")

View File

@ -12,6 +12,8 @@
VIDEO_START_MEMBER(special_state,special)
{
palette_set_color(machine(),0,RGB_BLACK); /* black */
palette_set_color(machine(),1,RGB_WHITE); /* white */
}
UINT32 special_state::screen_update_special(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)