mirror of
https://github.com/holub/mame
synced 2025-04-27 10:43:07 +03:00
fix regressions in redclash, redclashk, and trackfld.cpp (nw)
This commit is contained in:
parent
4019540f53
commit
04b65aa8c1
@ -933,6 +933,7 @@ MACHINE_CONFIG_START(trackfld_state::trackfld)
|
|||||||
|
|
||||||
GFXDECODE(config, m_gfxdecode, m_palette, gfx_trackfld);
|
GFXDECODE(config, m_gfxdecode, m_palette, gfx_trackfld);
|
||||||
PALETTE(config, m_palette, FUNC(trackfld_state::trackfld_palette), 16*16+16*16, 32);
|
PALETTE(config, m_palette, FUNC(trackfld_state::trackfld_palette), 16*16+16*16, 32);
|
||||||
|
MCFG_VIDEO_START_OVERRIDE(trackfld_state,trackfld)
|
||||||
|
|
||||||
/* sound hardware */
|
/* sound hardware */
|
||||||
SPEAKER(config, "speaker").front_center();
|
SPEAKER(config, "speaker").front_center();
|
||||||
|
@ -94,7 +94,7 @@ void redclash_state::redclash_palette(palette_device &palette) const
|
|||||||
|
|
||||||
// stars
|
// stars
|
||||||
for (int i = 0; i < 0x20; i++)
|
for (int i = 0; i < 0x20; i++)
|
||||||
palette.set_pen_indirect(i + 60, i + 0x20);
|
palette.set_pen_indirect(i + 0x60, i + 0x20);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user