mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
Fixed Wai Wai Jockey Gate-In title screen colors [Angelo Salese]
This commit is contained in:
parent
0eb8a31957
commit
cf2507348e
@ -157,7 +157,7 @@ static ADDRESS_MAP_START( wwjgtin_main_map, ADDRESS_SPACE_PROGRAM, 8 )
|
||||
AM_RANGE(0x1805, 0x1805) AM_READ_PORT("1805")
|
||||
AM_RANGE(0x1806, 0x1806) AM_READ_PORT("1806")
|
||||
AM_RANGE(0x1807, 0x1807) AM_READ_PORT("1807")
|
||||
AM_RANGE(0x1c00, 0x1c03) AM_WRITEONLY AM_BASE_MEMBER(lasso_state, last_colors)
|
||||
AM_RANGE(0x1c00, 0x1c02) AM_WRITEONLY AM_BASE_MEMBER(lasso_state, last_colors)
|
||||
AM_RANGE(0x1c04, 0x1c07) AM_WRITEONLY AM_BASE_MEMBER(lasso_state, track_scroll)
|
||||
AM_RANGE(0x4000, 0xbfff) AM_ROM
|
||||
AM_RANGE(0xc000, 0xffff) AM_ROM AM_REGION("maincpu", 0x8000)
|
||||
|
@ -108,8 +108,8 @@ static void wwjgtin_set_last_four_colors( running_machine *machine, colortable_t
|
||||
int i;
|
||||
|
||||
/* the last palette entries can be changed */
|
||||
for (i = 0; i < 4; i++)
|
||||
colortable_palette_set_color(colortable, 0x3f - i, get_color(state->last_colors[i]));
|
||||
for(i = 0; i < 3; i++)
|
||||
colortable_palette_set_color(colortable, 0x3d + i, get_color(state->last_colors[i]));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user