summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/pc2000.c
diff options
context:
space:
mode:
author Andrew Gardner <andrew-gardner@users.noreply.github.com>2013-03-06 04:33:54 +0000
committer Andrew Gardner <andrew-gardner@users.noreply.github.com>2013-03-06 04:33:54 +0000
commitc64c35d64a6fbc3c58ec89a3426bc0fd5c21236d (patch)
treed3afc90121acbcac91f21c69211802b2f85fd8d3 /src/mess/drivers/pc2000.c
parent1230f110d6aa715d65e3ea8632454b859f2db228 (diff)
Modernized the beep and taitosnd devices. [Andrew Gardner]
Diffstat (limited to 'src/mess/drivers/pc2000.c')
-rw-r--r--src/mess/drivers/pc2000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/pc2000.c b/src/mess/drivers/pc2000.c
index 617f99a0903..c57df8afded 100644
--- a/src/mess/drivers/pc2000.c
+++ b/src/mess/drivers/pc2000.c
@@ -122,7 +122,7 @@ READ8_MEMBER( pc2000_state::beep_r )
WRITE8_MEMBER( pc2000_state::beep_w )
{
- beep_set_state(m_beep, BIT(data, 3));
+ m_beep->set_state(BIT(data, 3));
m_beep_state = data;
}