From d9d604318caaaab04d8c53c499b500236fa913c3 Mon Sep 17 00:00:00 2001 From: Lerking Date: Mon, 5 May 2025 09:11:15 +0200 Subject: [PATCH] Update pygameControls/sony_playstation3_controller.py --- pygameControls/sony_playstation3_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygameControls/sony_playstation3_controller.py b/pygameControls/sony_playstation3_controller.py index e703428..5c31981 100644 --- a/pygameControls/sony_playstation3_controller.py +++ b/pygameControls/sony_playstation3_controller.py @@ -5,8 +5,8 @@ class SonyPlayStation3Controller(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.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()