summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/orbit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/orbit.cpp')
-rw-r--r--src/mame/drivers/orbit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/orbit.cpp b/src/mame/drivers/orbit.cpp
index 7e380c35bc8..1374e19945a 100644
--- a/src/mame/drivers/orbit.cpp
+++ b/src/mame/drivers/orbit.cpp
@@ -76,8 +76,8 @@ void orbit_state::update_misc_flags(address_space &space, UINT8 val)
m_discrete->write(space, ORBIT_WARNING_EN, BIT(m_misc_flags, 7));
- set_led_status(machine(), 0, BIT(m_misc_flags, 3));
- set_led_status(machine(), 1, BIT(m_misc_flags, 6));
+ machine().output().set_led_value(0, BIT(m_misc_flags, 3));
+ machine().output().set_led_value(1, BIT(m_misc_flags, 6));
machine().bookkeeping().coin_lockout_w(0, !BIT(m_misc_flags, 1));
machine().bookkeeping().coin_lockout_w(1, !BIT(m_misc_flags, 1));