Skip to content

Commit

Permalink
Fix braces around subobject warning in GigabyteRGBFusion2USBControlle…
Browse files Browse the repository at this point in the history
…r.cpp
  • Loading branch information
CalcProgrammer1 committed Jul 9, 2024
1 parent e2a0032 commit ca2ffa6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
\*-------------------------------------------------------------------------*/
static RGBCalibration GigabyteCalibrationsLookup
{
{ "BGR", { 0x00, 0x01, 0x02, 0x00} },
{ "BRG", { 0x01, 0x00, 0x02, 0x00} },
{ "GRB", { 0x02, 0x00, 0x01, 0x00} },
{ "GBR", { 0x00, 0x02, 0x01, 0x00} },
{ "RGB", { 0x02, 0x01, 0x00, 0x00} },
{ "RBG", { 0x01, 0x02, 0x00, 0x00} }
{{ "BGR", {0x00, 0x01, 0x02, 0x00} }},
{{ "BRG", {0x01, 0x00, 0x02, 0x00} }},
{{ "GRB", {0x02, 0x00, 0x01, 0x00} }},
{{ "GBR", {0x00, 0x02, 0x01, 0x00} }},
{{ "RGB", {0x02, 0x01, 0x00, 0x00} }},
{{ "RBG", {0x01, 0x02, 0x00, 0x00} }}
};

static calibration GigabyteBoardCalibration
Expand Down

0 comments on commit ca2ffa6

Please sign in to comment.