Skip to content

Commit

Permalink
MSVC FFTVisualDataThread constructor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcliffe committed Aug 29, 2015
1 parent c62ab63 commit 45c0eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/process/FFTVisualDataThread.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#include "FFTVisualDataThread.h"
#include "CubicSDR.h"

FFTVisualDataThread::FFTVisualDataThread() : linesPerSecond(DEFAULT_WATERFALL_LPS) {
FFTVisualDataThread::FFTVisualDataThread() {
linesPerSecond.store(DEFAULT_WATERFALL_LPS);
lpsChanged.store(true);
}

Expand Down

0 comments on commit 45c0eaf

Please sign in to comment.