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; }