mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 22:24:12 -04:00
Fix braces around subobject warning in GigabyteRGBFusion2USBController.cpp
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user