Update pygameControls/logitech_dual_action_controller.py

This commit is contained in:
2025-05-05 09:10:17 +02:00
parent f1a6f6e21d
commit 6eb50802d4

View File

@@ -25,8 +25,8 @@ class LogitechDualActionController(ControlsBase):
self.device = joy
self.instance_id: int = self.device.get_instance_id()
self.name = self.device.get_name()
self.connection_type = connection_type
self.guid = self.device.get_guid()
self.connection_type = connection_type
self.powerlevel = self.device.get_power_level()
self.numaxis: int = self.device.get_numaxes()
self.axis: list = [self.device.get_axis(a) for a in range(self.numaxis)]