From 1b098b9863b823cedc74eb0be33ec6dae8690fd4 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Thu, 8 Aug 2024 19:00:19 +0200 Subject: [PATCH] fixie --- wled00/bus_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 8fb12639..183c89b8 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -755,7 +755,7 @@ void __attribute__((hot)) BusHub75Matrix::setPixelColor(uint16_t pix, uint32_t c } } else { - //if (isBlack && (c == BLACK)) return; // reject black pixels directly after clearScreen() + if (isBlack && (c == BLACK)) return; // reject black pixels directly after clearScreen() #ifndef NO_CIE1931 c = unGamma24(c); // to use the driver linear brightness feature, we first need to undo WLED gamma correction #endif