summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prophet600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/prophet600.cpp')
-rw-r--r--src/mame/drivers/prophet600.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/prophet600.cpp b/src/mame/drivers/prophet600.cpp
index e957ea76ab7..45e4e3ed89b 100644
--- a/src/mame/drivers/prophet600.cpp
+++ b/src/mame/drivers/prophet600.cpp
@@ -124,11 +124,11 @@ WRITE8_MEMBER(prophet600_state::led_w)
}
else if (m_scanrow == 0x20)
{
- output_set_digit_value(0, data);
+ machine().output().set_digit_value(0, data);
}
else if (m_scanrow == 0x40)
{
- output_set_digit_value(1, data);
+ machine().output().set_digit_value(1, data);
}
}