summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/portrait.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/portrait.cpp')
-rw-r--r--src/mame/drivers/portrait.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/portrait.cpp b/src/mame/drivers/portrait.cpp
index d2fa51e7077..ffddda0d0e2 100644
--- a/src/mame/drivers/portrait.cpp
+++ b/src/mame/drivers/portrait.cpp
@@ -105,8 +105,8 @@ WRITE8_MEMBER(portrait_state::ctrl_w)
machine().bookkeeping().coin_counter_w(2, data & 0x04);
/* the 2 lamps near the camera */
- m_lamp[0] = BIT(data, 3);
- m_lamp[1] = BIT(data, 6);
+ m_lamps[0] = BIT(data, 3);
+ m_lamps[1] = BIT(data, 6);
/* shows the black and white photo from the camera */
output().set_value("photo", (data >> 7) & 1);