Fix build

This commit is contained in:
cam900 2022-12-08 15:12:26 +09:00
parent 2f6789fca7
commit 186eb23dd0
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ void DivPlatformK007232::tick(bool sysTick) {
}
else {
chan[i].lvol=chan[i].rvol=isMuted[i]?0:chan[i].outVol&0xf;
rWrite(0xc,regPool[0xc]&~(0xf<<(i<<2))|((chan[i].outVol&0xf)<<(i<<2)));
rWrite(0xc,(regPool[0xc]&~(0xf<<(i<<2)))|((chan[i].outVol&0xf)<<(i<<2)));
}
chan[i].volumeChanged=false;
}