From 445f63f350195cf13429d7fc18e645c8ecf0919d Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 14 Mar 2018 23:59:20 -0700 Subject: Remove an extraneous + --- Alc/effects/reverb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index 6861e967..3efac090 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1379,7 +1379,7 @@ static inline void VectorPartialScatterRev(ALfloat *restrict out, const ALfloat out[0] = xCoeff*in[3] + yCoeff*(in[0] + -in[1] + in[2] ); out[1] = xCoeff*in[2] + yCoeff*(in[0] + in[1] + -in[3]); out[2] = xCoeff*in[1] + yCoeff*(in[0] + -in[2] + in[3]); - out[3] = xCoeff*in[0] + yCoeff*( + -in[1] + -in[2] + -in[3]); + out[3] = xCoeff*in[0] + yCoeff*( -in[1] + -in[2] + -in[3]); } /* This applies a Gerzon multiple-in/multiple-out (MIMO) vector all-pass -- cgit v1.2.3