From 63f7aa5beb221016c708dbaff1b0b3208c2daa87 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 11 Sep 2019 17:53:05 -0500 Subject: [PATCH] Adjust the high FSR preset. The 100-112 thresholds are extremely low, and don't work for all play styles, since with harder presses, the 100 low threshold may not be reached quickly enough, which causes missed inputs. Raise the high preset thresholds to something more reasonable. Users can still set the lower values in the advanced tab if it works for them. This might be tuned further. This won't affect users who are already set to the higher thresholds, since it'll just act like custom thresholds. To update thresholds to the new values, click the "High" preset button again. --- smx-config/ConfigPresets.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smx-config/ConfigPresets.cs b/smx-config/ConfigPresets.cs index 3aa78fd..9c8808b 100644 --- a/smx-config/ConfigPresets.cs +++ b/smx-config/ConfigPresets.cs @@ -96,7 +96,7 @@ namespace smx_config { SetPreset(ref config, 20, 25, 20, 30, - 100, 112, 100, 112); + 140, 150, 140, 160); } static private void SetNormalPreset(ref SMX.SMXConfig config)