Don't pass debug level through to FFT - it doesn't respect the log target

This commit is contained in:
Chris Cannam
2022-08-30 18:55:33 +01:00
parent e3ae576fcd
commit 20d22f76d6

View File

@@ -640,7 +640,7 @@ R2Stretcher::configure()
if (!m_realtime && fftSizeChanged) { if (!m_realtime && fftSizeChanged) {
delete m_studyFFT; delete m_studyFFT;
m_studyFFT = new FFT(m_fftSize, m_log.getDebugLevel()); m_studyFFT = new FFT(m_fftSize);
m_studyFFT->initFloat(); m_studyFFT->initFloat();
} }