Remove struct initial values as this causes compile errors on Windows Qt6, the only place it is used these values get initialized anyways

This commit is contained in:
Adam Honse
2025-11-26 22:28:57 -06:00
parent 696008b48f
commit 396853658c

View File

@@ -91,9 +91,9 @@ const FwdLedHeaders LedLookup =
typedef struct
{
GB_FUSION2_LED_IDX idx = LED1;
uint16_t leds_min = 0;
uint16_t leds_max = 0;
GB_FUSION2_LED_IDX idx;
uint16_t leds_min;
uint16_t leds_max;
std::string name;
} gb_fusion2_zone;