From 6141c64a55a3da88cbb459932b5dffc37d542e37 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Wed, 25 Dec 2019 14:49:33 -0600 Subject: [PATCH] Fixed virtual key value for T --- DS4Windows/DS4Forms/BindingWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DS4Windows/DS4Forms/BindingWindow.xaml.cs b/DS4Windows/DS4Forms/BindingWindow.xaml.cs index 7f18c48..3304c1b 100644 --- a/DS4Windows/DS4Forms/BindingWindow.xaml.cs +++ b/DS4Windows/DS4Forms/BindingWindow.xaml.cs @@ -488,7 +488,7 @@ namespace DS4WinWPF.DS4Forms new BindAssociation() { outputType = BindAssociation.OutType.Key, outkey = 0x52 }); rKey.Click += OutputKeyBtn_Click; associatedBindings.Add(tKey, - new BindAssociation() { outputType = BindAssociation.OutType.Key, outkey = 0x55 }); + new BindAssociation() { outputType = BindAssociation.OutType.Key, outkey = 0x54 }); tKey.Click += OutputKeyBtn_Click; associatedBindings.Add(yKey, new BindAssociation() { outputType = BindAssociation.OutType.Key, outkey = 0x59 });