From c896768c0b4bff79cb1c3ca9ee64f283a188dc78 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:43:23 +0100 Subject: [PATCH] small correction mode_oops() should not call mode_oops() --- wled00/FX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/FX.cpp b/wled00/FX.cpp index 63a1f154..93d29c17 100644 --- a/wled00/FX.cpp +++ b/wled00/FX.cpp @@ -135,7 +135,7 @@ static uint16_t mode_oops(void) { strip._colors_t[1] = BLUE; strip._colors_t[2] = GREEN; errorFlag = ERR_NORAM_PX; - if (SEGLEN <= 1) return mode_oops(); + if (SEGLEN <= 1) return mode_static(); const uint16_t width = SEGMENT.is2D() ? SEGMENT.virtualWidth() : SEGMENT.virtualLength(); const uint16_t height = SEGMENT.virtualHeight();