diff --git a/wled00/ws.cpp b/wled00/ws.cpp index df8382488d..9b7d24e7bd 100644 --- a/wled00/ws.cpp +++ b/wled00/ws.cpp @@ -262,8 +262,8 @@ static bool sendLiveLedsWs(uint32_t wsClient) // WLEDMM added "static" if ((i/Segment::maxWidth)%(n)) i += Segment::maxWidth * (n-1); } #endif - uint32_t c = restoreColorLossy(strip.getPixelColor(i), stripBrightness); // WLEDMM full bright preview - does _not_ recover ABL reductions - //uint32_t c = strip.getPixelColorRestored(i); + //uint32_t c = restoreColorLossy(strip.getPixelColor(i), stripBrightness); // WLEDMM full bright preview - does _not_ recover ABL reductions + uint32_t c = strip.getPixelColorRestored(i); // WLEDMM begin: preview with color gamma correction if (gammaCorrectPreview) { uint8_t w = W(c); // not sure why, but it looks better if using "white" without corrections