add some missing init vars causing problems with new demod 0/false value checks

This commit is contained in:
Charles J. Cliffe
2015-07-18 17:03:29 -04:00
parent 9bd7ebf07a
commit 8827ff9e26
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
DemodulatorInstance::DemodulatorInstance() :
t_Demod(NULL), t_PreDemod(NULL), t_Audio(NULL), threadQueueDemod(NULL), demodulatorThread(NULL), terminated(true), audioTerminated(true), demodTerminated(
true), preDemodTerminated(true), active(false), squelch(false), stereo(false), currentFrequency(0), currentBandwidth(0), currentOutputDevice(-1) {
true), preDemodTerminated(true), active(false), squelch(false), stereo(false), tracking(false), follow(false), currentAudioSampleRate(0), currentFrequency(0), currentBandwidth(0), currentOutputDevice(-1) {
label = new std::string("Unnamed");
threadQueueDemod = new DemodulatorThreadInputQueue;