From affd1914c28d2d22c67dbc1f1e43dfceb81584a1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 2 Sep 2020 07:50:38 +1000 Subject: [PATCH] Change default input method on Windows to DirectInput for the record I think this is a bad idea --- src/BizHawk.Client.Common/config/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index f7b8465e8b..02bba334f5 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -312,6 +312,6 @@ namespace BizHawk.Client.Common // ReSharper disable once UnusedMember.Global public string LastWrittenFromDetailed { get; set; } = VersionInfo.GetEmuVersion(); - public EHostInputMethod HostInputMethod { get; set; } = EHostInputMethod.OpenTK; + public EHostInputMethod HostInputMethod { get; set; } = OSTailoredCode.IsUnixHost ? EHostInputMethod.OpenTK : EHostInputMethod.DirectInput; } } \ No newline at end of file