audio: disable stereo voice reverberation

This commit is contained in:
Zack Buhman 2026-06-03 19:15:06 -05:00
parent 45e2867877
commit ecc1857879

View File

@ -561,6 +561,7 @@ namespace audio {
float right = value * dryGain + wet.r * wetGain;
mix[0 ^ ch] += left;
mix[1 ^ ch] += right;
break;
}
for (int ch = 0; ch < channels; ch++)