mirror of
https://github.com/holub/mame
synced 2025-05-22 05:38:52 +03:00
01552: 3wonders, 3wonderu: Another little graphic glitch on attract mode
This commit is contained in:
parent
31336e491e
commit
26f1537f66
@ -1028,11 +1028,22 @@ static TILE_GET_INFO( get_tile0_info )
|
||||
tileinfo->group = (attr & 0x0180) >> 7;
|
||||
|
||||
if ((cps1_game_config->kludge == 3 && code == 0xf020) || // knights & msword: startup text
|
||||
(cps1_game_config->kludge == 2 && code == 0x0000) || // 3wonders: bottom of screen, between lives of first player and the word INSERT COIN
|
||||
(cps1_game_config->kludge == 11 && code == 0x0020)) // strider, unsquad, captcomm
|
||||
{
|
||||
tileinfo->pen_data = empty_tile;
|
||||
}
|
||||
|
||||
if (cps1_game_config->kludge == 2) // 3wonders
|
||||
{
|
||||
if (code == 0x0000 || // bottom of screen, between lives of first player and the word INSERT COIN
|
||||
code == 0x0a5c || // SIVA LOU'S COMPANION in attract mode
|
||||
code == 0x0a5d || // (note that this is definitely a game bug, 0a5c is supposed to be
|
||||
code == 0x0a6c || // the position on screen where to draw the string, but it is interpreted
|
||||
code == 0x0a6d) // as a character code)
|
||||
{
|
||||
tileinfo->pen_data = empty_tile;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static TILE_GET_INFO( get_tile1_info )
|
||||
|
Loading…
Reference in New Issue
Block a user