summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/galaxold.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/galaxold.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/galaxold.h')
-rw-r--r--src/mame/includes/galaxold.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/galaxold.h b/src/mame/includes/galaxold.h
index fb70548a0e5..342c3e67dea 100644
--- a/src/mame/includes/galaxold.h
+++ b/src/mame/includes/galaxold.h
@@ -45,7 +45,7 @@ public:
, m_bulletsram(*this,"bulletsram")
, m_rockclim_videoram(*this,"rockclim_vram")
, m_racknrol_tiles_bank(*this,"racknrol_tbank")
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
, m_leftclip(2)
{ }
@@ -66,7 +66,7 @@ public:
optional_shared_ptr<uint8_t> m_bulletsram;
optional_shared_ptr<uint8_t> m_rockclim_videoram;
optional_shared_ptr<uint8_t> m_racknrol_tiles_bank;
- output_finder<2> m_led;
+ output_finder<2> m_leds;
int m_irq_line;
uint8_t m__4in1_bank;
@@ -326,7 +326,7 @@ public:
void tazzmang(address_map &map);
protected:
- virtual void machine_start() override { m_led.resolve(); }
+ virtual void machine_start() override { m_leds.resolve(); }
};
#define galaxold_coin_counter_0_w galaxold_coin_counter_w