From bfb850d5ac12cfcc4ed9e70e8df8ac5733430177 Mon Sep 17 00:00:00 2001 From: Jerker Dahlblom Date: Thu, 4 Apr 2024 09:37:39 +0300 Subject: [PATCH 1/2] Latest submodule --- src/DCSFPCommon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DCSFPCommon b/src/DCSFPCommon index 72b5b60..1af04a6 160000 --- a/src/DCSFPCommon +++ b/src/DCSFPCommon @@ -1 +1 @@ -Subproject commit 72b5b6049eae058d0d1a10b2444b56d2fcbd7bc2 +Subproject commit 1af04a61a81988bcca0faf309fd1a4da186a6b07 From 41d5d959fca4857e5db27a9da6cb59ad3293d598 Mon Sep 17 00:00:00 2001 From: Jerker Dahlblom Date: Thu, 4 Apr 2024 09:39:20 +0300 Subject: [PATCH 2/2] Fix GetInputInterface without parameter --- src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs b/src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs index f87c155..c951120 100644 --- a/src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs +++ b/src/BIOSBuddy/UserControls/DCSBIOSControlUserControl.xaml.cs @@ -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: @@ -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: