mirror of
https://github.com/holub/mame
synced 2025-05-02 20:46:41 +03:00
specimx palette fix (nw)
This commit is contained in:
parent
c1590183d7
commit
0d79f42f8a
@ -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")
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user