diff --git a/ForceFeedbackSharpDx/MicrosoftSidewinder.cs b/ForceFeedbackSharpDx/MicrosoftSidewinder.cs index 34c132f..a416256 100644 --- a/ForceFeedbackSharpDx/MicrosoftSidewinder.cs +++ b/ForceFeedbackSharpDx/MicrosoftSidewinder.cs @@ -103,8 +103,15 @@ public bool ForceFeedback2(string productGuid, string productName, bool AutoCent return false; } - // Autocenter on - joystick.Properties.AutoCenter = AutoCenter; + try + { + // Autocenter on + joystick.Properties.AutoCenter = AutoCenter; + } + catch (Exception _) + { + // Some devices do not support this setting. + } // Acquire the joystick joystick.Acquire();