From c3c779f8f0b93d73ee09aecc100ef5d15166fae3 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Wed, 11 Mar 2026 12:36:36 +0100 Subject: [PATCH] (chores) fix compiler warning (switch case implicitly falls through) --- wled00/bus_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index e33ab54f..88e1f8e8 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -360,8 +360,10 @@ void BusPwm::setPixelColor(uint16_t pix, uint32_t c) { case TYPE_ANALOG_5CH: //RGB + warm white + cold white _data[4] = cw; w = ww; + // falls through case TYPE_ANALOG_4CH: //RGBW _data[3] = w; + // falls through case TYPE_ANALOG_3CH: //standard dumb RGB _data[0] = r; _data[1] = g; _data[2] = b; break;