Skip to content

Commit ca2ffa6

Browse files
Fix braces around subobject warning in GigabyteRGBFusion2USBController.cpp
1 parent e2a0032 commit ca2ffa6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Controllers/GigabyteRGBFusion2USBController/GigabyteRGBFusion2USBController.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
\*-------------------------------------------------------------------------*/
2121
static RGBCalibration GigabyteCalibrationsLookup
2222
{
23-
{ "BGR", { 0x00, 0x01, 0x02, 0x00} },
24-
{ "BRG", { 0x01, 0x00, 0x02, 0x00} },
25-
{ "GRB", { 0x02, 0x00, 0x01, 0x00} },
26-
{ "GBR", { 0x00, 0x02, 0x01, 0x00} },
27-
{ "RGB", { 0x02, 0x01, 0x00, 0x00} },
28-
{ "RBG", { 0x01, 0x02, 0x00, 0x00} }
23+
{{ "BGR", {0x00, 0x01, 0x02, 0x00} }},
24+
{{ "BRG", {0x01, 0x00, 0x02, 0x00} }},
25+
{{ "GRB", {0x02, 0x00, 0x01, 0x00} }},
26+
{{ "GBR", {0x00, 0x02, 0x01, 0x00} }},
27+
{{ "RGB", {0x02, 0x01, 0x00, 0x00} }},
28+
{{ "RBG", {0x01, 0x02, 0x00, 0x00} }}
2929
};
3030

3131
static calibration GigabyteBoardCalibration

0 commit comments

Comments
 (0)