Minor fix

This commit is contained in:
cam900 2023-02-12 08:27:46 +09:00
parent d12d62721a
commit 2dea822e38
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;