summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segahang.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/segahang.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/segahang.h')
-rw-r--r--src/mame/includes/segahang.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/segahang.h b/src/mame/includes/segahang.h
index 9547dbf3379..fb5e217b690 100644
--- a/src/mame/includes/segahang.h
+++ b/src/mame/includes/segahang.h
@@ -40,7 +40,7 @@ public:
, m_adc_select(0)
, m_adc_ports(*this, {"ADC0", "ADC1", "ADC2", "ADC3"})
, m_decrypted_opcodes(*this, "decrypted_opcodes")
- , m_lamp(*this, "lamp%u", 0U)
+ , m_lamps(*this, "lamp%u", 0U)
{ }
// PPI read/write callbacks
@@ -113,7 +113,7 @@ protected:
// driver overrides
virtual void video_start() override;
- virtual void machine_start() override { m_lamp.resolve(); }
+ virtual void machine_start() override { m_lamps.resolve(); }
virtual void machine_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
@@ -144,5 +144,5 @@ protected:
optional_ioport_array<4> m_adc_ports;
bool m_shadow;
optional_shared_ptr<uint16_t> m_decrypted_opcodes;
- output_finder<2> m_lamp;
+ output_finder<2> m_lamps;
};