summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kickgoal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/kickgoal.cpp')
-rw-r--r--src/mame/drivers/kickgoal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/kickgoal.cpp b/src/mame/drivers/kickgoal.cpp
index 4520698d0c7..96c206769aa 100644
--- a/src/mame/drivers/kickgoal.cpp
+++ b/src/mame/drivers/kickgoal.cpp
@@ -385,7 +385,7 @@ WRITE8_MEMBER(kickgoal_state::soundio_port_c_w)
{
if (!(data & 0x10))
{
- m_pic_portb = m_soundlatch->read(space, 0);
+ m_pic_portb = m_soundlatch->read();
m_sound_command_sent = 0x00;
}
}
@@ -412,7 +412,7 @@ WRITE8_MEMBER(kickgoal_state::soundio_port_c_w)
WRITE16_MEMBER(kickgoal_state::to_pic_w)
{
- m_soundlatch->write(space, 0, data);
+ m_soundlatch->write(data);
m_sound_command_sent = 0x20;
}