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/unico.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mame/drivers/unico.cpp') diff --git a/src/mame/drivers/unico.cpp b/src/mame/drivers/unico.cpp index d0c93fcb952..d821a699180 100644 --- a/src/mame/drivers/unico.cpp +++ b/src/mame/drivers/unico.cpp @@ -96,8 +96,8 @@ WRITE16_MEMBER(zeropnt_state::zeropnt_sound_bank_w) memcpy(dst + 0x20000, src, 0x20000); machine().bookkeeping().coin_counter_w(0,data & 0x1000); - m_led[0] = BIT(data, 11); // Start 1 - m_led[1] = BIT(data, 10); // Start 2 + m_leds[0] = BIT(data, 11); // Start 1 + m_leds[1] = BIT(data, 10); // Start 2 } } @@ -192,8 +192,8 @@ WRITE32_MEMBER(zeropnt2_state::zeropnt2_leds_w) if (ACCESSING_BITS_16_23) { machine().bookkeeping().coin_counter_w(0,data & 0x00010000); - m_led[0] = BIT(data, 23); // Start 1 - m_led[1] = BIT(data, 22); // Start 2 + m_leds[0] = BIT(data, 23); // Start 1 + m_leds[1] = BIT(data, 22); // Start 2 } } @@ -567,7 +567,7 @@ GFXDECODE_END void unico_state::machine_start() { - m_led.resolve(); + m_leds.resolve(); } -- cgit v1.2.3