fix regressions in redclash, redclashk, and trackfld.cpp (nw)

This commit is contained in:
Vas Crabb 2018-12-31 16:44:06 +11:00
parent 4019540f53
commit 04b65aa8c1
2 changed files with 2 additions and 1 deletions

View File

@ -933,6 +933,7 @@ MACHINE_CONFIG_START(trackfld_state::trackfld)
GFXDECODE(config, m_gfxdecode, m_palette, gfx_trackfld);
PALETTE(config, m_palette, FUNC(trackfld_state::trackfld_palette), 16*16+16*16, 32);
MCFG_VIDEO_START_OVERRIDE(trackfld_state,trackfld)
/* sound hardware */
SPEAKER(config, "speaker").front_center();

View File

@ -94,7 +94,7 @@ void redclash_state::redclash_palette(palette_device &palette) const
// stars
for (int i = 0; i < 0x20; i++)
palette.set_pen_indirect(i + 60, i + 0x20);
palette.set_pen_indirect(i + 0x60, i + 0x20);
}