Previous 199869 Revisions Next

r19238 Saturday 1st December, 2012 at 13:47:38 UTC by Angelo Salese
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

trunk/src/mame/drivers/senjyo.c
r19237r19238
77TODO:
88- wrong background colors in baluba, intermissions after round 13 (btanb or
99  fixed at some point)
10- Star Force: the Larios is supposed to blink at the third loop of the BGM.
11  Right now it does at second and half, presumably due of the unknown PCB clocks.
1012
13Note:
14- Star Force shows default MAME palette at POST. Putted it all_black for now.
1115
1216This board was obviously born to run Senjyo. Four scrolling layers, gradient
1317background, sprite/background priorities, and even a small bitmap for the
r19237r19238
181185/* are scroll registers 1+2 linked on the bootleg?, only one copy is written */
182186WRITE8_MEMBER(senjyo_state::starforb_scrolly2)
183187{
184
185188   m_scrolly2[offset] = data;
186189   m_scrolly1[offset] = data;
187190}
188191
189192WRITE8_MEMBER(senjyo_state::starforb_scrollx2)
190193{
191
192194   m_scrollx2[offset] = data;
193195   m_scrollx1[offset] = data;
194196}
r19237r19238
592594
593595   MCFG_GFXDECODE(senjyo)
594596   MCFG_PALETTE_LENGTH(512+2)   /* 512 real palette + 2 for the radar */
597   MCFG_PALETTE_INIT(all_black)
595598
596
597599   /* sound hardware */
598600   MCFG_SPEAKER_STANDARD_MONO("mono")
599601

Previous 199869 Revisions Next


© 1997-2024 The MAME Team