summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gaelco2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/gaelco2.cpp')
-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 672afa9d51e..99afde75ec8 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 >> 2, BIT(data, 0));
+ m_mainlatch->write_bit(offset >> 3, BIT(data, 0));
}
WRITE_LINE_MEMBER(gaelco2_state::coin1_counter_w)