summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/jedi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/jedi.c')
-rw-r--r--src/mame/audio/jedi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/jedi.c b/src/mame/audio/jedi.c
index 989d6ba994f..6aeaf97e0ee 100644
--- a/src/mame/audio/jedi.c
+++ b/src/mame/audio/jedi.c
@@ -143,7 +143,7 @@ WRITE8_MEMBER(jedi_state::speech_strobe_w)
if ((new_speech_strobe_state != m_speech_strobe_state) && new_speech_strobe_state)
{
device_t *tms = machine().device("tms");
- tms5220_data_w(tms, 0, *m_speech_data);
+ tms5220_data_w(tms, space, 0, *m_speech_data);
}
m_speech_strobe_state = new_speech_strobe_state;
}