mirror of
https://github.com/holub/mame
synced 2025-06-04 03:46:29 +03:00
ymfm: Boost ADPCM-B volume by a factor of 2 to more closely match previous levels. Addresses MT #07956
This commit is contained in:
parent
3476463db6
commit
e825cb34bb
4
3rdparty/ymfm/src/ymfm_opn.cpp
vendored
4
3rdparty/ymfm/src/ymfm_opn.cpp
vendored
@ -1544,7 +1544,7 @@ void ym2608::clock_fm_and_adpcm()
|
||||
|
||||
// mix in the ADPCM
|
||||
m_adpcm_a.output(m_last_fm, 0x3f);
|
||||
m_adpcm_b.output(m_last_fm, 2);
|
||||
m_adpcm_b.output(m_last_fm, 1);
|
||||
}
|
||||
|
||||
|
||||
@ -2314,7 +2314,7 @@ void ym2610::clock_fm_and_adpcm()
|
||||
|
||||
// mix in the ADPCM and clamp
|
||||
m_adpcm_a.output(m_last_fm, 0x3f);
|
||||
m_adpcm_b.output(m_last_fm, 2);
|
||||
m_adpcm_b.output(m_last_fm, 1);
|
||||
m_last_fm.clamp16();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user