From 2a591e01106fe778236272b731526a11f97cb6f5 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sat, 1 Dec 2012 13:47:38 +0000 Subject: [PATCH] Made palette_init to be all black in Star Force, in order to not show MAME's default palette, nw --- src/mame/drivers/senjyo.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/senjyo.c b/src/mame/drivers/senjyo.c index cdcd64144cb..09f3e3971be 100644 --- a/src/mame/drivers/senjyo.c +++ b/src/mame/drivers/senjyo.c @@ -7,7 +7,11 @@ driver by Mirko Buffoni TODO: - wrong background colors in baluba, intermissions after round 13 (btanb or fixed at some point) +- Star Force: the Larios is supposed to blink at the third loop of the BGM. + Right now it does at second and half, presumably due of the unknown PCB clocks. +Note: +- Star Force shows default MAME palette at POST. Putted it all_black for now. This board was obviously born to run Senjyo. Four scrolling layers, gradient background, sprite/background priorities, and even a small bitmap for the @@ -181,14 +185,12 @@ ADDRESS_MAP_END /* are scroll registers 1+2 linked on the bootleg?, only one copy is written */ WRITE8_MEMBER(senjyo_state::starforb_scrolly2) { - m_scrolly2[offset] = data; m_scrolly1[offset] = data; } WRITE8_MEMBER(senjyo_state::starforb_scrollx2) { - m_scrollx2[offset] = data; m_scrollx1[offset] = data; } @@ -592,7 +594,7 @@ static MACHINE_CONFIG_START( senjyo, senjyo_state ) MCFG_GFXDECODE(senjyo) MCFG_PALETTE_LENGTH(512+2) /* 512 real palette + 2 for the radar */ - + MCFG_PALETTE_INIT(all_black) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono")