summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/epos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/epos.cpp')
-rw-r--r--src/mame/video/epos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/epos.cpp b/src/mame/video/epos.cpp
index 60876258a72..b722033d4b9 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
*/
- output().set_led_value(0, (data >> 0) & 0x01);
- output().set_led_value(1, (data >> 1) & 0x01);
+ m_led[0] = BIT(data, 0);
+ m_led[1] = BIT(data, 1);
machine().bookkeeping().coin_counter_w(0, (data >> 2) & 0x01);