summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tecmo.cpp
diff options
context:
space:
mode:
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)