From a7669477247701c185865d37e0a1c1fcf4fe6221 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:22:38 +0100 Subject: [PATCH] Fix compilation --- tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 4efe0b3f1..c2a330269 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino @@ -477,7 +477,7 @@ struct WEB { #ifdef ESP8266 int8_t shutter_slider[MAX_SHUTTERS]; #else // ESP32 - int8_t shutter_slider[MAX_SHUTTERS_ESP32]; + int8_t shutter_slider[16]; // MAX_SHUTTERS_ESP32 #endif // ESP8266 uint16_t upload_error = 0; uint8_t state = HTTP_OFF;