From 3afb0f815d3b6480f37c026b967fcc973a29735d Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 14 Jan 2022 14:12:49 -0500 Subject: [PATCH] lower the volume of TIA by half --- src/engine/platform/sound/tia/TIASnd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/platform/sound/tia/TIASnd.cpp b/src/engine/platform/sound/tia/TIASnd.cpp index 22cf733b1..f6ef80460 100644 --- a/src/engine/platform/sound/tia/TIASnd.cpp +++ b/src/engine/platform/sound/tia/TIASnd.cpp @@ -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; }