From 5291d140218339dff4fa471b1f8f1cfab3eb3fa1 Mon Sep 17 00:00:00 2001 From: wilbertpol Date: Sat, 26 May 2018 21:45:32 +0200 Subject: 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) --- src/mame/includes/segahang.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mame/includes/segahang.h') 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 m_decrypted_opcodes; - output_finder<2> m_lamp; + output_finder<2> m_lamps; }; -- cgit v1.2.3