summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/model1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/model1.cpp')
-rw-r--r--src/mame/drivers/model1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/model1.cpp b/src/mame/drivers/model1.cpp
index e2a101227bf..39bc2d1b2f6 100644
--- a/src/mame/drivers/model1.cpp
+++ b/src/mame/drivers/model1.cpp
@@ -673,11 +673,11 @@ WRITE16_MEMBER(model1_state::io_w)
output().set_led_value(4, data & 0x40); // VIEW4
output().set_led_value(5, data & 0x80); // RACE LEADER
m_lamp_state = data;
- output().set_digit_value(1, data);
+ m_digits[1] = data;
return;
} else if (offset == 0x11) {
// drive board commands
- output().set_digit_value(0, data);
+ m_digits[0] = data;
return;
}
logerror("IOW: %02x %02x\n", offset, data);