mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-01 04:21:44 +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;
|
||||
|
||||
case Hardware1: // mono/stereo sampling with only 1 hardware channel
|
||||
*(buffer++) = v0 + v1;
|
||||
*(buffer++) = (v0 + v1) >> 1;
|
||||
samples--;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue