summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gottlieb.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/gottlieb.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/gottlieb.h')
-rw-r--r--src/mame/includes/gottlieb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/gottlieb.h b/src/mame/includes/gottlieb.h
index 8f1fa1eac4a..07acb1fc940 100644
--- a/src/mame/includes/gottlieb.h
+++ b/src/mame/includes/gottlieb.h
@@ -52,7 +52,7 @@ public:
, m_generic_paletteram_8(*this, "paletteram")
, m_track_x(*this, "TRACKX")
, m_track_y(*this, "TRACKY")
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
{ }
void qbert_knocker(uint8_t knock);
@@ -133,7 +133,7 @@ protected:
optional_ioport m_track_x;
optional_ioport m_track_y;
- output_finder<3> m_led; // only used by reactor
+ output_finder<3> m_leds; // only used by reactor
uint8_t m_knocker_prev;
uint8_t m_joystick_select;