summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/matmania.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/matmania.cpp')
-rw-r--r--src/mame/drivers/matmania.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/matmania.cpp b/src/mame/drivers/matmania.cpp
index 003d1281534..4b75f814977 100644
--- a/src/mame/drivers/matmania.cpp
+++ b/src/mame/drivers/matmania.cpp
@@ -58,13 +58,13 @@ READ8_MEMBER(matmania_state::maniach_mcu_status_r)
WRITE8_MEMBER(matmania_state::matmania_sh_command_w)
{
- m_soundlatch->write(space, offset, data);
+ m_soundlatch->write(data);
m_audiocpu->set_input_line(M6502_IRQ_LINE, HOLD_LINE);
}
WRITE8_MEMBER(matmania_state::maniach_sh_command_w)
{
- m_soundlatch->write(space, offset, data);
+ m_soundlatch->write(data);
m_audiocpu->set_input_line(M6809_IRQ_LINE, HOLD_LINE);
}