From bc3c208482674c34692a38812f2bc94d01780361 Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 8 Apr 2021 19:26:32 +0200 Subject: [PATCH] - add missing file --- Lib.Audio/Device.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib.Audio/Device.cs b/Lib.Audio/Device.cs index 4460202..bbc5412 100644 --- a/Lib.Audio/Device.cs +++ b/Lib.Audio/Device.cs @@ -17,8 +17,8 @@ namespace Lib.Audio _buttonConfiguration = new DeviceButtonConfiguration {HasMuteButton = true, NumberOfButtons = 4}; //FixMe: remove hard coded config Channels = new List(); - for (int i = 0; i < 8; i++) //FixMe: remove hard coded config - Channels.Add(channelFactory.Create(_buttonConfiguration)); + for (uint i = 0; i < 8; i++) //FixMe: remove hard coded config + Channels.Add(channelFactory.Create(i, _buttonConfiguration)); } public List Channels { get; }