diff --git a/pygameControls/xbox_series_x_controller.py b/pygameControls/xbox_series_x_controller.py index 29d7d5e..bf986d8 100644 --- a/pygameControls/xbox_series_x_controller.py +++ b/pygameControls/xbox_series_x_controller.py @@ -9,6 +9,7 @@ class XboxSeriesXController(ControlsBase): self.name = self.device.get_name() self.guid = self.device.get_guid() self.connection_type = ConnectionType(connection_type.values()) + self.input_type = InputType.XInput self.numaxis: int = self.device.get_numaxes() self.axis: list = [self.device.get_axis(a) for a in range(self.numaxis)] self.numhats: int = self.device.get_numhats()