From bf44a0dd210f12387683ede2f23e7dbfcd6c8582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20M=C3=B6hle?= <91616163+softhack007@users.noreply.github.com> Date: Mon, 12 Jan 2026 23:03:39 +0100 Subject: [PATCH] Remove bad extra "#endif" --- wled00/bus_manager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 4835b941..9aff4ac5 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -1323,7 +1323,6 @@ int BusManager::add(BusConfig &bc) { if (foundOverlap) { overlappingBusses = true; slowMode = true; } if (numBusses < 1) { overlappingBusses = false; slowMode = false; } USER_PRINT(slowMode && (lastSlowMode != slowMode) ? F("Warning: Outputs set to SlowMode, due to overlapping bus start indices!\n") : F("")); // only print message once when we switch over to slow mode -#endif return numBusses++; }