gaelco2.cpp: fixed MT07675 and MT07676 (nw)

This commit is contained in:
Ivan Vangelista 2020-06-06 21:55:39 +02:00
parent 118b94e18f
commit 40101244cd

View File

@ -186,7 +186,7 @@ u8 gaelco2_state::shareram_r(offs_t offset)
void gaelco2_state::wrally2_latch_w(offs_t offset, u16 data)
{
m_mainlatch->write_bit(offset >> 3, BIT(data, 0));
m_mainlatch->write_bit(offset >> 2, BIT(data, 0));
}
WRITE_LINE_MEMBER(gaelco2_state::coin1_counter_w)