diff --git a/wled00/FX.h b/wled00/FX.h index 9fd3a04d8a..3e57b665b0 100644 --- a/wled00/FX.h +++ b/wled00/FX.h @@ -541,7 +541,6 @@ class Segment { inline uint32_t getPixelColorXYRaw(unsigned x, unsigned y) const { auto XY = [](unsigned X, unsigned Y){ return X + Y*Segment::vWidth(); }; return pixels[XY(x,y)]; }; #endif void resetIfRequired(); // sets all SEGENV variables to 0 and clears data buffer - void loadPalette(CRGBPalette16 &tgt, uint8_t pal); // transition functions void stopTransition(); // ends transition mode by destroying transition structure (does nothing if not in transition) @@ -653,6 +652,7 @@ class Segment { inline static unsigned vHeight() { return Segment::_vHeight; } inline static uint32_t getCurrentColor(unsigned i) { return Segment::_currentColors[i