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
1 changed files with 1 additions and 1 deletions

View File

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