this won't build

This commit is contained in:
tildearrow 2023-09-04 18:35:18 -05:00
parent ad7b4f61b5
commit 55eeb241cf
2 changed files with 202 additions and 186 deletions

View file

@ -2056,20 +2056,22 @@ class FurnaceGUI {
unsigned short lastCorrPos[DIV_MAX_CHANS];
struct ChanOscStatus {
double* inBuf;
fftw_complex* outBuf;
double* corrBuf;
size_t inBufPos;
double inBufPosFrac;
unsigned short needle;
fftw_complex* outBuf;
double* corrBuf;
bool ready;
fftw_plan plan;
fftw_plan planI;
ChanOscStatus():
inBuf(NULL),
outBuf(NULL),
corrBuf(NULL),
inBufPos(0),
inBufPosFrac(0.0f),
needle(0),
outBuf(NULL),
corrBuf(NULL),
ready(false),
plan(NULL),
planI(NULL) {}
} chanOscChan[DIV_MAX_CHANS];