diff options
Diffstat (limited to 'src/mame/video/epos.cpp')
-rw-r--r-- | src/mame/video/epos.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/epos.cpp b/src/mame/video/epos.cpp index b722033d4b9..a73baff8ea3 100644 --- a/src/mame/video/epos.cpp +++ b/src/mame/video/epos.cpp @@ -70,8 +70,8 @@ WRITE8_MEMBER(epos_state::port_1_w) D4-D7 - unused */ - m_led[0] = BIT(data, 0); - m_led[1] = BIT(data, 1); + m_leds[0] = BIT(data, 0); + m_leds[1] = BIT(data, 1); machine().bookkeeping().coin_counter_w(0, (data >> 2) & 0x01); |