From ce745f0b6e7bd5950728ae04f9446dce7afc64e3 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 3 Jun 2018 10:02:52 +0200 Subject: [PATCH] Fixed wrong assignment in DeviceUpdateTrigger --- RGB.NET.Core/Update/Devices/DeviceUpdateTrigger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RGB.NET.Core/Update/Devices/DeviceUpdateTrigger.cs b/RGB.NET.Core/Update/Devices/DeviceUpdateTrigger.cs index 7230926..03410fb 100644 --- a/RGB.NET.Core/Update/Devices/DeviceUpdateTrigger.cs +++ b/RGB.NET.Core/Update/Devices/DeviceUpdateTrigger.cs @@ -76,7 +76,7 @@ namespace RGB.NET.Core /// The hard limit of the update rate of this trigger. public DeviceUpdateTrigger(double updateRateHardLimit) { - this._updateRateHardLimit = updateRateHardLimit; + this.UpdateRateHardLimit = updateRateHardLimit; } #endregion