summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tispeak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tispeak.cpp')
-rw-r--r--src/mame/drivers/tispeak.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tispeak.cpp b/src/mame/drivers/tispeak.cpp
index f10d562974d..6904a5ff926 100644
--- a/src/mame/drivers/tispeak.cpp
+++ b/src/mame/drivers/tispeak.cpp
@@ -621,12 +621,12 @@ TIMER_DEVICE_CALLBACK_MEMBER(tispeak_state::tntell_get_overlay)
// try to get overlay code from artwork file(in decimal), otherwise pick the
// one that was selected in machine configuration
- m_overlay = output_get_value("overlay_code") & 0x1f;
+ m_overlay = machine().output().get_value("overlay_code") & 0x1f;
if (m_overlay == 0)
m_overlay = m_inp_matrix[10]->read();
for (int i = 0; i < 5; i++)
- output_set_indexed_value("ol", i+1, m_overlay >> i & 1);
+ machine().output().set_indexed_value("ol", i+1, m_overlay >> i & 1);
}