summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ojankohs.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-03-12 18:10:30 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2020-03-12 18:10:30 +0100
commit6525dc0cbfcfde2d123a4f7beaf42570010238b1 (patch)
treea2d8da881880636f54661591ed08193989e5f085 /src/mame/drivers/ojankohs.cpp
parent037d9d1b7059d276dca507bd8776efa7329fec95 (diff)
devices/sound: more handler simplification (nw)
Diffstat (limited to 'src/mame/drivers/ojankohs.cpp')
-rw-r--r--src/mame/drivers/ojankohs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ojankohs.cpp b/src/mame/drivers/ojankohs.cpp
index 4170bea8dae..9ba9c4a517f 100644
--- a/src/mame/drivers/ojankohs.cpp
+++ b/src/mame/drivers/ojankohs.cpp
@@ -76,7 +76,7 @@ WRITE_LINE_MEMBER(ojankohs_state::ojankohs_adpcm_int)
/* clock the data through */
if (m_vclk_left)
{
- m_msm->write_data((m_adpcm_data >> 4));
+ m_msm->data_w(m_adpcm_data >> 4);
m_adpcm_data <<= 4;
m_vclk_left--;
}