Skip to content

Commit

Permalink
Merge pull request #26 from PepperDash/hotfix/InputsOffByOne
Browse files Browse the repository at this point in the history
Hotfix/inputs off by one
  • Loading branch information
TrevorPayne authored Apr 6, 2023
2 parents 49af50b + 326ed51 commit f10e70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epi-display-samsung-mdc/SamsungMdc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, E
foreach (var input in InputPorts)
{
var i = input;
var inputIndex = count;
var inputIndex = count + 1;
trilist.SetSigTrueAction((ushort)(joinMap.InputSelectOffset.JoinNumber + count), () =>
{
Debug.Console(DebugLevelVerbose, this, "InputSelect Digital-'{0}'", inputIndex);
Expand Down

0 comments on commit f10e70f

Please sign in to comment.