mirror of
https://github.com/holub/mame
synced 2025-10-07 09:25:34 +03:00
Might as well not mask screen drawing atm
This commit is contained in:
parent
84ebb4debc
commit
3a74df2487
@ -450,7 +450,7 @@ WRITE8_MEMBER(cntsteer_state::cntsteer_vregs_w)
|
|||||||
m_bg_tilemap->mark_all_dirty();
|
m_bg_tilemap->mark_all_dirty();
|
||||||
break;
|
break;
|
||||||
case 3: m_rotation_sign = (data & 7);
|
case 3: m_rotation_sign = (data & 7);
|
||||||
m_disable_roz = (~data & 0x08);
|
m_disable_roz = 0; //(~data & 0x08);
|
||||||
m_maincpu->set_input_line(INPUT_LINE_RESET, data & 8 ? CLEAR_LINE : ASSERT_LINE);
|
m_maincpu->set_input_line(INPUT_LINE_RESET, data & 8 ? CLEAR_LINE : ASSERT_LINE);
|
||||||
m_scrolly_hi = (data & 0x30) << 4;
|
m_scrolly_hi = (data & 0x30) << 4;
|
||||||
m_scrollx_hi = (data & 0xc0) << 2;
|
m_scrollx_hi = (data & 0xc0) << 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user