summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/play_2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/play_2.cpp')
-rw-r--r--src/mame/drivers/play_2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/play_2.cpp b/src/mame/drivers/play_2.cpp
index 19acc54fb22..c8c99938b6d 100644
--- a/src/mame/drivers/play_2.cpp
+++ b/src/mame/drivers/play_2.cpp
@@ -324,15 +324,15 @@ WRITE8_MEMBER( play_2_state::sound_g_w )
switch (data)
{
case 0x01:
- m_aysnd1->data_w(space, 0, m_psg_latch);
+ m_aysnd1->data_w(m_psg_latch);
break;
case 0x02:
- m_psg_latch = m_aysnd1->data_r(space, 0);
+ m_psg_latch = m_aysnd1->data_r();
break;
case 0x03:
- m_aysnd1->address_w(space, 0, m_psg_latch);
+ m_aysnd1->address_w(m_psg_latch);
break;
}
}