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/drivers/skykid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mame/drivers/skykid.cpp') diff --git a/src/mame/drivers/skykid.cpp b/src/mame/drivers/skykid.cpp index d87fee84ae8..200a362bd39 100644 --- a/src/mame/drivers/skykid.cpp +++ b/src/mame/drivers/skykid.cpp @@ -62,8 +62,8 @@ READ8_MEMBER(skykid_state::inputport_r) WRITE8_MEMBER(skykid_state::skykid_led_w) { - m_led[0] = BIT(data, 3); - m_led[1] = BIT(data, 4); + m_leds[0] = BIT(data, 3); + m_leds[1] = BIT(data, 4); } WRITE8_MEMBER(skykid_state::skykid_subreset_w) @@ -95,7 +95,7 @@ WRITE8_MEMBER(skykid_state::skykid_irq_2_ctrl_w) void skykid_state::machine_start() { - m_led.resolve(); + m_leds.resolve(); /* configure the banks */ membank("bank1")->configure_entries(0, 2, memregion("maincpu")->base() + 0x10000, 0x2000); -- cgit v1.2.3