mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user