summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tiki100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tiki100.cpp')
-rw-r--r--src/mame/drivers/tiki100.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tiki100.cpp b/src/mame/drivers/tiki100.cpp
index fbd5398666c..f026716f5ab 100644
--- a/src/mame/drivers/tiki100.cpp
+++ b/src/mame/drivers/tiki100.cpp
@@ -281,10 +281,10 @@ WRITE8_MEMBER( tiki100_state::system_w )
if (floppy) floppy->mon_w(!BIT(data, 6));
/* GRAFIKK key led */
- m_led[1] = BIT(data, 5);
+ m_leds[0] = BIT(data, 5);
/* LOCK key led */
- m_led[2] = BIT(data, 7);
+ m_leds[1] = BIT(data, 7);
/* bankswitch */
m_rome = BIT(data, 2);
@@ -671,7 +671,7 @@ WRITE_LINE_MEMBER( tiki100_state::busrq_w )
void tiki100_state::machine_start()
{
- m_led.resolve();
+ m_leds.resolve();
/* allocate video RAM */
m_video_ram.allocate(TIKI100_VIDEORAM_SIZE);