summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/stuntair.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/stuntair.cpp')
-rw-r--r--src/mame/drivers/stuntair.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/stuntair.cpp b/src/mame/drivers/stuntair.cpp
index 3fcf547ecd6..9cce11f085f 100644
--- a/src/mame/drivers/stuntair.cpp
+++ b/src/mame/drivers/stuntair.cpp
@@ -320,7 +320,7 @@ WRITE8_MEMBER(stuntair_state::stuntair_sound_w)
{
// each command is written three times: with bit 7 set, then with bit 7 clear, then with bit 7 set again
// the 3 highest bits are ignored by the sound program
- m_soundlatch->write(space, 0, data);
+ m_soundlatch->write(data);
m_audiocpu->set_input_line(INPUT_LINE_NMI, BIT(data, 7) ? CLEAR_LINE : ASSERT_LINE);
}