mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-03 22:21:09 +00:00
lower the volume of TIA by half
This commit is contained in:
parent
1d3429d568
commit
3afb0f815d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue