Skip to content

Commit

Permalink
Fixing typo in Wow/OH process variance filter
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Nov 4, 2023
1 parent 6107e95 commit 51aa03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugin/Source/Processors/Timing_Effects/OHProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class OHProcess
{
y[ch] += sqrtdelta * rPtr[n] * amt;
y[ch] += damping * (mean - y[ch]) * T;
return lpf.processSample (y[ch], (int) ch);
return lpf.processSample ((int) ch, y[ch]);
}

private:
Expand Down

0 comments on commit 51aa03b

Please sign in to comment.