missing return params

This commit is contained in:
Charles J. Cliffe 2014-11-17 23:25:14 -05:00
parent dd42d112c9
commit 75c51f1236
2 changed files with 3 additions and 1 deletions

View File

@ -66,7 +66,6 @@ AppFrame::AppFrame() :
}
demodulatorTest = demodMgr.newThread(this);
demodulatorTest->params.inputResampleRate=170000;
demodulatorTest->run();
threadQueueAudio = new AudioThreadQueue(this);

View File

@ -37,7 +37,10 @@ public:
delete threadQueueDemod;
t_Demod = NULL;
threadQueueDemod = NULL;
return false;
}
return true;
}
};