1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Style fix

This commit is contained in:
SpoinkyNL 2018-01-09 12:36:16 +01:00
parent 835e5a0a32
commit ac0350a9f8

View File

@ -34,7 +34,7 @@ namespace RGB.NET.Devices.CoolerMaster
if (leds.Count > 0)
{
// 6 by 22 seems hard-coded but it's what the CM SDK expects regardless of keyboard size
var matrix = new _CoolerMasterSDK.COLOR_MATRIX { KeyColor = new _CoolerMasterSDK.KEY_COLOR[6, 22] };
_CoolerMasterSDK.COLOR_MATRIX matrix = new _CoolerMasterSDK.COLOR_MATRIX { KeyColor = new _CoolerMasterSDK.KEY_COLOR[6, 22] };
foreach (Led led in leds)
{
(int row, int column) = ((int, int))led.CustomData;