summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/abc80x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/abc80x.c')
-rw-r--r--src/mess/drivers/abc80x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/abc80x.c b/src/mess/drivers/abc80x.c
index 11733198aa1..e822539ab12 100644
--- a/src/mess/drivers/abc80x.c
+++ b/src/mess/drivers/abc80x.c
@@ -161,7 +161,7 @@ READ8_MEMBER( abc800_state::pling_r )
{
m_pling = !m_pling;
- discrete_sound_w(m_discrete, NODE_01, m_pling);
+ discrete_sound_w(m_discrete, space, NODE_01, m_pling);
return 0xff;
}
@@ -175,7 +175,7 @@ READ8_MEMBER( abc802_state::pling_r )
{
m_pling = !m_pling;
- discrete_sound_w(m_discrete, NODE_01, m_pling);
+ discrete_sound_w(m_discrete, space, NODE_01, m_pling);
return 0xff;
}