From 69c1b23cc19a6b0ca3aa84ef1caff780c960a560 Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Mon, 8 Apr 2019 23:48:21 -0700 Subject: [PATCH] Turn off XInput by default. Oops, the DirectInput devices don't have IG_* in their paths, so games that use both will get very confused. --- dhc/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dhc/src/config.rs b/dhc/src/config.rs index 195c392..0e50b1a 100644 --- a/dhc/src/config.rs +++ b/dhc/src/config.rs @@ -35,7 +35,7 @@ fn default_device_count() -> usize { } fn default_xinput_enabled() -> bool { - true + false } impl Default for Config {