summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gottlieb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gottlieb.cpp')
-rw-r--r--src/mame/drivers/gottlieb.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gottlieb.cpp b/src/mame/drivers/gottlieb.cpp
index 5cd9c92b59b..5ed47353714 100644
--- a/src/mame/drivers/gottlieb.cpp
+++ b/src/mame/drivers/gottlieb.cpp
@@ -223,7 +223,7 @@ VBlank duration: 1/VSYNC * (16/256) = 1017.6 us
void gottlieb_state::machine_start()
{
- m_led.resolve();
+ m_leds.resolve();
/* register for save states */
save_item(NAME(m_joystick_select));
save_item(NAME(m_track));
@@ -328,9 +328,9 @@ WRITE8_MEMBER(gottlieb_state::reactor_output_w)
{
general_output_w(space, offset, data & ~0xe0);
- m_led[0] = BIT(data, 5);
- m_led[1] = BIT(data, 6);
- m_led[2] = BIT(data, 7);
+ m_leds[0] = BIT(data, 5);
+ m_leds[1] = BIT(data, 6);
+ m_leds[2] = BIT(data, 7);
}
WRITE8_MEMBER(gottlieb_state::qbert_output_w)