diff options
Diffstat (limited to 'src/mame/includes/tetrisp2.h')
-rw-r--r-- | src/mame/includes/tetrisp2.h | 6 |
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; |