summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fromanc2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fromanc2.cpp')
-rw-r--r--src/mame/drivers/fromanc2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/fromanc2.cpp b/src/mame/drivers/fromanc2.cpp
index b9aec13b2ea..8bd66cfc0fb 100644
--- a/src/mame/drivers/fromanc2.cpp
+++ b/src/mame/drivers/fromanc2.cpp
@@ -37,8 +37,8 @@
WRITE16_MEMBER(fromanc2_state::sndcmd_w)
{
- m_soundlatch->write(space, offset, (data >> 8) & 0xff); // 1P (LEFT)
- m_soundlatch2->write(space, offset, data & 0xff); // 2P (RIGHT)
+ m_soundlatch->write((data >> 8) & 0xff); // 1P (LEFT)
+ m_soundlatch2->write(data & 0xff); // 2P (RIGHT)
m_audiocpu->pulse_input_line(INPUT_LINE_NMI, attotime::zero);
m_sndcpu_nmi_flag = 0;