VRC6: changes around volume macro

This commit is contained in:
tildearrow 2022-03-30 22:55:55 -05:00
parent a8ee4b1245
commit 6f3b9f2e5d
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ void DivPlatformVRC6::tick() {
chWrite(i,0,chan[i].outVol);
}
} else { // pulse
chan[i].outVol=((chan[i].vol&15)*MIN(63,chan[i].std.vol))/63;
chan[i].outVol=((chan[i].vol&15)*MIN(15,chan[i].std.vol))/15;
if (chan[i].outVol<0) chan[i].outVol=0;
if (chan[i].outVol>15) chan[i].outVol=15;
if ((!isMuted[i]) && (!chan[i].pcm)) {