summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hh_pic16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hh_pic16.cpp')
-rw-r--r--src/mame/drivers/hh_pic16.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/hh_pic16.cpp b/src/mame/drivers/hh_pic16.cpp
index 7026c25ff30..e511bc6698d 100644
--- a/src/mame/drivers/hh_pic16.cpp
+++ b/src/mame/drivers/hh_pic16.cpp
@@ -141,7 +141,7 @@ void hh_pic16_state::display_update()
if (m_display_cache[y] != active_state[y])
{
if (m_display_segmask[y] != 0)
- output_set_digit_value(y, active_state[y] & m_display_segmask[y]);
+ machine().output().set_digit_value(y, active_state[y] & m_display_segmask[y]);
const int mul = (m_display_maxx <= 10) ? 10 : 100;
for (int x = 0; x <= m_display_maxx; x++)
@@ -161,8 +161,8 @@ void hh_pic16_state::display_update()
sprintf(buf1, "lamp%d", y * mul + x);
sprintf(buf2, "%d.%d", y, x);
}
- output_set_value(buf1, state);
- output_set_value(buf2, state);
+ machine().output().set_value(buf1, state);
+ machine().output().set_value(buf2, state);
}
}