summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kenseim.cpp
diff options
context:
space:
mode:
author wilbertpol <wilbertpol@users.noreply.github.com>2018-05-26 21:45:32 +0200
committer Vas Crabb <cuavas@users.noreply.github.com>2018-05-27 05:45:32 +1000
commit5291d140218339dff4fa471b1f8f1cfab3eb3fa1 (patch)
tree76f2dd83bacede1d04ecfcd12135d7ad7245479f /src/mame/drivers/kenseim.cpp
parentc6e63ee748b64eb971e7091ea19848cc55f4d8b5 (diff)
use plural names for output finders when there are multiple outputs (#3595)
* use plural names for output finders when there are multiple outputs (nw) * use plural names for output finders when there are multiple outputs (nw) * use plural names for output finders when there are multiple outputs (nw)
Diffstat (limited to 'src/mame/drivers/kenseim.cpp')
-rw-r--r--src/mame/drivers/kenseim.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/kenseim.cpp b/src/mame/drivers/kenseim.cpp
index 0549755f019..d7d1dea5769 100644
--- a/src/mame/drivers/kenseim.cpp
+++ b/src/mame/drivers/kenseim.cpp
@@ -159,7 +159,7 @@ public:
m_from68k_st4(0),
m_from68k_st3(0),
m_from68k_st2(0),
- m_lamp(*this, "lamp%u", 1U)
+ m_lamps(*this, "lamp%u", 1U)
{
for (int i = 0; i < 6; i++)
{
@@ -254,7 +254,7 @@ private:
int mole_state_a[6];
int mole_state_b[6];
- output_finder<20> m_lamp;
+ output_finder<20> m_lamps;
};
@@ -265,7 +265,7 @@ private:
void kenseim_state::set_leds(uint32_t ledstates)
{
for (int i=0; i<20; i++)
- m_lamp[i] = BIT(ledstates, i);
+ m_lamps[i] = BIT(ledstates, i);
}
// could be wrong
@@ -702,7 +702,7 @@ void kenseim_state::init_kenseim()
m_led_clock = 0;
m_led_latch = 0;
- m_lamp.resolve();
+ m_lamps.resolve();
}