Skip to content

Commit

Permalink
Fixed small mistake in WLED readme
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthAffe committed Jan 17, 2024
1 parent 23bd111 commit b2848cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RGB.NET.Devices.WLED/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static class WledDiscoveryHelper
public static IEnumerable<(string address, WledInfo info)> DiscoverDevices(int waitFor = 500, int maxDevices = -1)
{
List<(string address, WledInfo info)> devices = [];
using ManualResetEventSlim waitEvent = new();
using ManualResetEventSlim waitEvent = new(false);

int devicesToDetect = maxDevices <= 0 ? int.MaxValue : maxDevices;

Expand Down

0 comments on commit b2848cf

Please sign in to comment.