Change default input method on Windows to DirectInput

for the record I think this is a bad idea
This commit is contained in:
YoshiRulz 2020-09-02 07:50:38 +10:00
parent 1793e991ca
commit affd1914c2
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}