Skip to content

Commit 3d8bc11

Browse files
committed
fix: fixed invalid call
1 parent 5cb3848 commit 3d8bc11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libjamesdsp/JdspImpResToolbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ void ComputeIIREqualizerCplx(int srate, int order, const double* freqs, double*
564564
cplxIm[i] = 0;
565565
}
566566

567-
for (int i = 0; i < bandsNum() - 1; i++)
567+
for (int i = 0; i < NUMPTS - 1; i++)
568568
{
569569
double dB = gains[i + 1] - gains[i];
570570
double designFreq;

0 commit comments

Comments
 (0)