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

Fixed naming of deviceInfo parameter in AbsvtractRGBDevice

This commit is contained in:
Darth Affe 2021-04-24 20:37:51 +02:00
parent b39188474f
commit 1d57f4e988

View File

@ -72,9 +72,9 @@ namespace RGB.NET.Core
#region Constructors
protected AbstractRGBDevice(TDeviceInfo deviceOnfo, IUpdateQueue updateQueue)
protected AbstractRGBDevice(TDeviceInfo deviceInfo, IUpdateQueue updateQueue)
{
this.DeviceInfo = deviceOnfo;
this.DeviceInfo = deviceInfo;
this.UpdateQueue = updateQueue;
}