mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
(nw) canvas : fixed flip screen (as reported)
This commit is contained in:
parent
8d61256930
commit
ecb741bc96
@ -88,7 +88,7 @@ WRITE8_MEMBER(mainsnk_state::c600_w)
|
||||
int bank;
|
||||
int total_elements = m_gfxdecode->gfx(0)->elements();
|
||||
|
||||
flip_screen_set(~data & 0x80);
|
||||
flip_screen_set(BIT(~data, 7) && BIT(ioport("DSW1")->read(), 1));
|
||||
|
||||
m_bg_tilemap->set_palette_offset((data & 0x07) << 4);
|
||||
m_tx_tilemap->set_palette_offset((data & 0x07) << 4);
|
||||
|
Loading…
Reference in New Issue
Block a user