Clang comp. fix, out.real()+= syntax error
This commit is contained in:
@@ -67,7 +67,7 @@ void Alienwah::out(const Stereo<float *> &smp)
|
||||
tmp = clfol * x + oldclfol * x1;
|
||||
|
||||
out = tmp * oldl[oldk];
|
||||
out.real() += (1 - fabs(fb)) * smp.l[i] * (1.0 - panning);
|
||||
out += (1 - fabs(fb)) * smp.l[i] * (1.0 - panning);
|
||||
|
||||
oldl[oldk] = out;
|
||||
REALTYPE l = out.real() * 10.0 * (fb + 0.1);
|
||||
@@ -76,7 +76,7 @@ void Alienwah::out(const Stereo<float *> &smp)
|
||||
tmp = clfor * x + oldclfor * x1;
|
||||
|
||||
out = tmp * oldr[oldk];
|
||||
out.real() += (1 - fabs(fb)) * smp.r[i] * (1.0 - panning);
|
||||
out += (1 - fabs(fb)) * smp.r[i] * (1.0 - panning);
|
||||
|
||||
oldr[oldk] = out;
|
||||
REALTYPE r = out.real() * 10.0 * (fb + 0.1);
|
||||
|
||||
Reference in New Issue
Block a user