summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/orao.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/orao.c')
-rw-r--r--src/mess/machine/orao.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/machine/orao.c b/src/mess/machine/orao.c
index eaa89dcb8e1..7bdd8d801ff 100644
--- a/src/mess/machine/orao.c
+++ b/src/mess/machine/orao.c
@@ -72,7 +72,6 @@ WRITE8_MEMBER(orao_state::orao_io_w)
{
if (offset == 0x0800)
{
- dac_device *dac = machine().device<dac_device>("dac");
- dac->write_unsigned8(data); //beeper
+ m_dac->write_unsigned8(data); //beeper
}
}