Merge branch 'master' of github.com:tildearrow/furnace

This commit is contained in:
tildearrow 2023-02-11 18:35:59 -05:00
commit 437e705b1a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ void es5506_core::voice_tick()
m_ch[i].reset();
}
// Update voice
for (int i=0; i<VGS_CLAMP(m_active,4,31); i++) {
for (int i=0; i<(VGS_CLAMP(m_active,4,31)+1); i++) {
m_voice[i].tick(i);
const u8 ca = m_voice[i].cr().ca()&7;