summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/copsnrob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/copsnrob.cpp')
-rw-r--r--src/mame/drivers/copsnrob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/copsnrob.cpp b/src/mame/drivers/copsnrob.cpp
index fecc88c4b9b..5cce920e7d4 100644
--- a/src/mame/drivers/copsnrob.cpp
+++ b/src/mame/drivers/copsnrob.cpp
@@ -79,7 +79,7 @@ WRITE8_MEMBER(copsnrob_state::copsnrob_misc2_w)
{
m_misc = data & 0x7f;
/* Multi Player Start */
- output().set_led_value(1, !((data >> 6) & 0x01));
+ m_led[1] = BIT(~data, 6);
}