summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti74.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-10 18:51:11 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-10 18:51:36 +0100
commitc678902d0b36d3274a678b35610a21fe880ed53c (patch)
tree5765117b81ef85946e45f1ee1fe0c8c41ae06cad /src/mame/drivers/ti74.cpp
parent74b39e26d2fffcdb6e567b06b1f20792a5239bd2 (diff)
make output be part of driver_device (nw)
Diffstat (limited to 'src/mame/drivers/ti74.cpp')
-rw-r--r--src/mame/drivers/ti74.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ti74.cpp b/src/mame/drivers/ti74.cpp
index 86d920d70d1..9c01b6ceea2 100644
--- a/src/mame/drivers/ti74.cpp
+++ b/src/mame/drivers/ti74.cpp
@@ -168,7 +168,7 @@ void ti74_state::update_lcd_indicator(UINT8 y, UINT8 x, int state)
// above | _LOW _ERROR 2nd INV ALPHA LC INS DEGRAD HEX OCT I/O
// screen- | _P{70} <{71} RUN{3}
// area . SYS{4}
- machine().output().set_lamp_value(y * 10 + x, state);
+ output().set_lamp_value(y * 10 + x, state);
}
static HD44780_PIXEL_UPDATE(ti74_pixel_update)