diff --git a/RGB.NET.Core/RGBSurfaceUpdater.cs b/RGB.NET.Core/RGBSurfaceUpdater.cs index c040acc..162990e 100644 --- a/RGB.NET.Core/RGBSurfaceUpdater.cs +++ b/RGB.NET.Core/RGBSurfaceUpdater.cs @@ -75,8 +75,7 @@ namespace RGB.NET.Core { long preUpdateTicks = DateTime.Now.Ticks; - foreach (IRGBDevice device in _devices) - device.Update(); + Update(); int sleep = (int)((UpdateFrequency * 1000.0) - ((DateTime.Now.Ticks - preUpdateTicks) / 10000.0)); if (sleep > 0)