mirror of
https://github.com/holub/mame
synced 2025-07-06 10:29:38 +03:00
xmen6p: workaround for broken right side screen colors
This commit is contained in:
parent
6e5cdd9a8f
commit
e956bb0d0c
@ -301,7 +301,7 @@ void xmen6p_state::screen_vblank(int state)
|
||||
index += m_tilemap_select ? 2 : 0;
|
||||
for (int offset = 0; offset < (0xc000 / 2); offset++)
|
||||
{
|
||||
if (index == 0 || (offset != 0x1c80 && offset != 0x1e80))
|
||||
if (index == 0 || (offset != 0x1c00 && offset != 0x1c80 && offset != 0x1e80))
|
||||
m_k052109->write(offset, m_tilemap[index][offset] & 0x00ff);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user