summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/goal92.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/goal92.cpp')
-rw-r--r--src/mame/drivers/goal92.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/goal92.cpp b/src/mame/drivers/goal92.cpp
index 11828b83cf4..d9a83a4058a 100644
--- a/src/mame/drivers/goal92.cpp
+++ b/src/mame/drivers/goal92.cpp
@@ -24,7 +24,7 @@ WRITE16_MEMBER(goal92_state::goal92_sound_command_w)
{
if (ACCESSING_BITS_8_15)
{
- m_soundlatch->write(space, 0, (data >> 8) & 0xff);
+ m_soundlatch->write((data >> 8) & 0xff);
m_audiocpu->set_input_line(0, HOLD_LINE);
}
}