summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xevious.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xevious.cpp')
-rw-r--r--src/mame/machine/xevious.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/xevious.cpp b/src/mame/machine/xevious.cpp
index 8ec4ce970d6..1bd65aa5937 100644
--- a/src/mame/machine/xevious.cpp
+++ b/src/mame/machine/xevious.cpp
@@ -138,8 +138,8 @@ WRITE8_MEMBER( xevious_state::battles_customio_data3_w )
WRITE8_MEMBER( xevious_state::battles_CPU4_coin_w )
{
- output().set_led_value(0,data & 0x02); // Start 1
- output().set_led_value(1,data & 0x01); // Start 2
+ m_led[0] = BIT(data, 1); // Start 1
+ m_led[1] = BIT(data, 0); // Start 2
machine().bookkeeping().coin_counter_w(0,data & 0x20);
machine().bookkeeping().coin_counter_w(1,data & 0x10);