libayemu icon indicating copy to clipboard operation
libayemu copied to clipboard

Bug found

Open Cthutu opened this issue 7 years ago • 0 comments

In line 456 of ay8912.c, you have:

max_l = ay->vols[0][31] + ay->vols[2][31] + ay->vols[3][31];

I think it should be:

max_l = ay->vols[0][31] + ay->vols[2][31] + ay->vols[4][31];

Cthutu avatar Feb 21 '18 18:02 Cthutu