summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-06 19:22:05 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-06 19:22:05 +0200
commitc181ecb00000a4f963663d22bba00cb6c09ca26f (patch)
tree6badfc7ab5105383f96dd12d98b798d8d285143d /src/mess/machine
parentb4a6a32e3b36aef55c8802bfb485b16775d239cc (diff)
Fixed sound on orao (nw)
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/orao.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/machine/orao.c b/src/mess/machine/orao.c
index 681b9a415eb..5540d9092fb 100644
--- a/src/mess/machine/orao.c
+++ b/src/mess/machine/orao.c
@@ -74,6 +74,7 @@ WRITE8_MEMBER(orao_state::orao_io_w)
{
if (offset == 0x0800)
{
- m_dac->write_unsigned8(data); //beeper
+ m_speaker->level_w(m_beep);
+ m_beep ^= 1;
}
}