summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/unico.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/unico.cpp')
-rw-r--r--src/mame/drivers/unico.cpp10
1 files changed, 5 insertions, 5 deletions
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();
}