From e956bb0d0c455b94e2189e920c3e3cdbd2c238a9 Mon Sep 17 00:00:00 2001 From: hap Date: Fri, 16 Aug 2024 21:20:20 +0200 Subject: xmen6p: workaround for broken right side screen colors --- src/mame/konami/xmen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/konami/xmen.cpp b/src/mame/konami/xmen.cpp index 23703c4cada..77ab9ad86de 100644 --- a/src/mame/konami/xmen.cpp +++ b/src/mame/konami/xmen.cpp @@ -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); } -- cgit v1.2.3