summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tecmo.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2016-10-29 12:16:30 +0100
committer smf- <smf-@users.noreply.github.com>2016-10-29 12:17:16 +0100
commit705dde329e2f138bcfae02a7f97b931e03af888f (patch)
tree58339e0a3caac39505de2cd421ac49ee67114f1a /src/mame/drivers/tecmo.cpp
parentbde830ac6326bdf247a2e3e4c5738ca46884b47c (diff)
removed msm5205 volume trampoline (nw)
Diffstat (limited to 'src/mame/drivers/tecmo.cpp')
-rw-r--r--src/mame/drivers/tecmo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tecmo.cpp b/src/mame/drivers/tecmo.cpp
index 7474c13373e..1ccb1f928d0 100644
--- a/src/mame/drivers/tecmo.cpp
+++ b/src/mame/drivers/tecmo.cpp
@@ -90,7 +90,7 @@ WRITE8_MEMBER(tecmo_state::adpcm_end_w)
WRITE8_MEMBER(tecmo_state::adpcm_vol_w)
{
- m_msm->set_volume((data & 0x0f) * 100 / 15);
+ m_msm->set_output_gain(ALL_OUTPUTS, (data & 15) / 15.0);
}
WRITE_LINE_MEMBER(tecmo_state::adpcm_int)