summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/renegade.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/renegade.cpp')
-rw-r--r--src/mame/drivers/renegade.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/renegade.cpp b/src/mame/drivers/renegade.cpp
index cf6d873bad1..5d3d7768d21 100644
--- a/src/mame/drivers/renegade.cpp
+++ b/src/mame/drivers/renegade.cpp
@@ -165,7 +165,7 @@ WRITE_LINE_MEMBER(renegade_state::adpcm_int)
else
{
uint8_t const data = m_adpcmrom[m_adpcm_pos / 2];
- m_msm->data_w(m_adpcm_pos & 1 ? data & 0xf : data >> 4);
+ m_msm->write_data(m_adpcm_pos & 1 ? data & 0xf : data >> 4);
m_adpcm_pos++;
}
}