fixed not init variable

This commit is contained in:
AlexandreRouma 2022-10-11 17:49:51 +02:00
parent 68ba6d7d19
commit 8eed0fcc9c

View File

@ -51,6 +51,6 @@ private:
double tuneOffset; double tuneOffset;
double currentFreq; double currentFreq;
double ifFreq = 0.0; double ifFreq = 0.0;
TuningMode tuneMode; TuningMode tuneMode = TuningMode::NORMAL;
dsp::stream<dsp::complex_t> nullSource; dsp::stream<dsp::complex_t> nullSource;
}; };