lower the volume of TIA by half

This commit is contained in:
tildearrow 2022-01-14 14:12:49 -05:00
parent 1d3429d568
commit 3afb0f815d

View file

@ -335,7 +335,7 @@ void TIASound::process(short* buffer, unsigned int samples)
break; break;
case Hardware1: // mono/stereo sampling with only 1 hardware channel case Hardware1: // mono/stereo sampling with only 1 hardware channel
*(buffer++) = v0 + v1; *(buffer++) = (v0 + v1) >> 1;
samples--; samples--;
break; break;
} }