Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Latest submodule (#25)
Browse files Browse the repository at this point in the history
* Latest submodule

* Fix GetInputInterface without parameter
  • Loading branch information
jdahlblom authored Apr 4, 2024
1 parent 8f13280 commit 789a1da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private void ShowControl()

foreach (var dcsbiosControlInput in _dcsbiosControl.Inputs)
{
var inputInterface = dcsbiosControlInput.GetInputInterface(_dcsbiosControl.Identifier);
var inputInterface = dcsbiosControlInput.GetInputInterface();
switch (inputInterface.Interface)
{
case DCSBIOSInputType.FIXED_STEP:
Expand Down Expand Up @@ -652,7 +652,7 @@ private void TextBoxDataToSend_OnGotFocus(object sender, RoutedEventArgs e)

foreach (var dcsbiosInput in _dcsbiosControl.Inputs)
{
var inputInterface = dcsbiosInput.GetInputInterface(_dcsbiosControl.Identifier);
var inputInterface = dcsbiosInput.GetInputInterface();
switch (inputInterface.Interface)
{
case DCSBIOSInputType.FIXED_STEP:
Expand Down

0 comments on commit 789a1da

Please sign in to comment.