Skip to content

Commit 0ba454e

Browse files
committed
Small math optimizations
1 parent 11f0405 commit 0ba454e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/util/Analyzer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ namespace lsp
358358
// Get complex argument
359359
dsp::pcomplex_mod(vFftReIm, vFftReIm, fft_csize);
360360
// Mix with the previous value
361-
dsp::mix2(c->vAmp, vFftReIm, 1.0 - fTau, fTau, fft_csize);
361+
dsp::mix2(c->vAmp, vFftReIm, 1.0f - fTau, fTau, fft_csize);
362362
}
363363
else
364364
dsp::fill_zero(c->vAmp, fft_csize);

0 commit comments

Comments
 (0)