Revert "spectrum: store own channel count"

This reverts commit 6f501a91b2.
This commit is contained in:
Eknous-P 2025-11-05 12:34:48 +04:00
parent 6f501a91b2
commit 14f8273e13
2 changed files with 6 additions and 7 deletions

View file

@ -2770,7 +2770,7 @@ class FurnaceGUI {
fftw_complex* tunerFFTOutBuf;
fftw_plan tunerPlan;
struct SpectrumSettings {
int bins, chans;
int bins;
float xZoom, xOffset;
float yOffset;
fftw_plan plan[DIV_MAX_OUTPUTS];
@ -2782,7 +2782,6 @@ class FurnaceGUI {
bool showXGrid, showYGrid, showXScale, showYScale;
SpectrumSettings():
bins(4096),
chans(0),
xZoom(1.0f),
xOffset(0.0f),
yOffset(0.0f),