summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tetrisp2.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/tetrisp2.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/tetrisp2.h')
-rw-r--r--src/mame/includes/tetrisp2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/tetrisp2.h b/src/mame/includes/tetrisp2.h
index 2f54773adc0..dee2e96ca7a 100644
--- a/src/mame/includes/tetrisp2.h
+++ b/src/mame/includes/tetrisp2.h
@@ -32,7 +32,7 @@ public:
m_sub_palette(*this, "sub_palette"),
m_paletteram(*this, "paletteram"),
m_sub_paletteram(*this, "sub_paletteram"),
- m_led(*this, "led%u", 0U)
+ m_leds(*this, "led%u", 0U)
{ }
DECLARE_WRITE16_MEMBER(rockn_systemregs_w);
@@ -104,7 +104,7 @@ public:
void tetrisp2_map(address_map &map);
protected:
- virtual void machine_start() override { m_led.resolve(); }
+ virtual void machine_start() override { m_leds.resolve(); }
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_subcpu;
@@ -134,7 +134,7 @@ protected:
optional_device<palette_device> m_sub_palette;
required_shared_ptr<uint16_t> m_paletteram;
optional_shared_ptr<uint16_t> m_sub_paletteram;
- output_finder<45> m_led;
+ output_finder<45> m_leds;
uint16_t m_rocknms_sub_systemregs[0x10];
uint16_t m_rockn_protectdata;