1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

Small formatting changes

This commit is contained in:
DarthAffe 2020-08-13 10:30:25 +02:00 committed by GitHub
parent 2d833fb800
commit a3f9b430d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ namespace RGB.NET.Devices.CoolerMaster
#region Properties & Fields
private CoolerMasterDevicesIndexes _deviceIndex;
private _CoolerMasterColorMatrix _deviceMatrix;
private readonly _CoolerMasterColorMatrix _deviceMatrix;
#endregion
@ -28,8 +28,8 @@ namespace RGB.NET.Devices.CoolerMaster
: base(updateTrigger)
{
this._deviceIndex = deviceIndex;
this._deviceMatrix = new _CoolerMasterColorMatrix();
_deviceMatrix = new _CoolerMasterColorMatrix();
_deviceMatrix.KeyColor = new _CoolerMasterKeyColor[_CoolerMasterColorMatrix.ROWS, _CoolerMasterColorMatrix.COLUMNS];
}