From 396853658c2722324362d00900102fa85ba60b49 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Wed, 26 Nov 2025 22:28:57 -0600 Subject: [PATCH] Remove struct initial values as this causes compile errors on Windows Qt6, the only place it is used these values get initialized anyways --- .../GigabyteFusion2USB_Devices.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Controllers/GigabyteRGBFusion2USBController/GigabyteFusion2USB_Devices.h b/Controllers/GigabyteRGBFusion2USBController/GigabyteFusion2USB_Devices.h index e4baf973..132b69f6 100644 --- a/Controllers/GigabyteRGBFusion2USBController/GigabyteFusion2USB_Devices.h +++ b/Controllers/GigabyteRGBFusion2USBController/GigabyteFusion2USB_Devices.h @@ -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;