summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-06 21:55:39 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-06 21:55:39 +0200
commit40101244cd719f53ef49fefe353730a35052df74 (patch)
treee0570e21af8dc61aada9dbb85e4b93577be2212a
parent118b94e18fc7a555fe6805c99fa05fa6c9f68b06 (diff)
gaelco2.cpp: fixed MT07675 and MT07676 (nw)
-rw-r--r--src/mame/machine/gaelco2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/gaelco2.cpp b/src/mame/machine/gaelco2.cpp
index b18c00bcfa2..944af41b8e7 100644
--- a/src/mame/machine/gaelco2.cpp
+++ b/src/mame/machine/gaelco2.cpp
@@ -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)