summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/atarisy2.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/atarisy2.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/atarisy2.h')
-rw-r--r--src/mame/includes/atarisy2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/atarisy2.h b/src/mame/includes/atarisy2.h
index b5ead477479..a672ba0dacb 100644
--- a/src/mame/includes/atarisy2.h
+++ b/src/mame/includes/atarisy2.h
@@ -35,7 +35,7 @@ public:
, m_tms5220(*this, "tms")
, m_rombank(*this, "rombank%u", 1U)
, m_slapstic(*this, "slapstic")
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
{ }
void init_ssprint();
@@ -95,7 +95,7 @@ private:
int32_t m_spin_pos; /* track fake position of spinner */
uint32_t m_spin_center_count;
- output_finder<2> m_led;
+ output_finder<2> m_leds;
DECLARE_WRITE16_MEMBER(int0_ack_w);
DECLARE_WRITE16_MEMBER(int1_ack_w);