summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mcr3.h
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/includes/mcr3.h
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/includes/mcr3.h')
-rw-r--r--src/mame/includes/mcr3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/mcr3.h b/src/mame/includes/mcr3.h
index 27da1c42072..54a0c7fce58 100644
--- a/src/mame/includes/mcr3.h
+++ b/src/mame/includes/mcr3.h
@@ -19,7 +19,7 @@ public:
, m_maxrpm_adc(*this, "adc")
, m_lamplatch(*this, "lamplatch")
, m_screen(*this, "screen")
- , m_lamp(*this, "lamp%u", 0U)
+ , m_lamps(*this, "lamp%u", 0U)
{ }
DECLARE_WRITE8_MEMBER(mcr3_videoram_w);
@@ -73,7 +73,7 @@ public:
void spyhunt_map(address_map &map);
void spyhunt_portmap(address_map &map);
protected:
- virtual void machine_start() override { m_lamp.resolve(); }
+ virtual void machine_start() override { m_lamps.resolve(); }
virtual void video_start() override;
private:
@@ -81,7 +81,7 @@ private:
optional_device<adc0844_device> m_maxrpm_adc;
optional_device<cd4099_device> m_lamplatch;
required_device<screen_device> m_screen;
- output_finder<3> m_lamp;
+ output_finder<3> m_lamps;
uint8_t m_latched_input;
uint8_t m_maxrpm_adc_control;