Skip to content

Commit d5f2dff

Browse files
FIX: Wrong mapping of Xbox Series S|X and Xbox One wireless controllers "View" button on macOS (#2017)
1 parent 82ec624 commit d5f2dff

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ however, it has to be formatted properly to pass verification tests.
1414
- Added the display of the device flag `CanRunInBackground` in device debug view.
1515
- Added analytics for programmatic `InputAction` setup via `InputActionSetupExtensions` when exiting play-mode.
1616

17+
### Fixed
18+
- Fixed wrong mapping of Xbox Series S|X and Xbox One wireless controllers "View" button on macOS.[ISXB-385](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-385)
19+
1720
## [1.11.1] - 2024-09-26
1821

1922
### Fixed

Packages/com.unity.inputsystem/InputSystem/Plugins/XInput/XboxGamepadMacOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ internal struct XInputControllerWirelessOSXState : IInputStateTypeInfo
111111
public enum Button
112112
{
113113
Start = 11,
114-
Select = 16,
114+
Select = 10,
115115
LeftThumbstickPress = 13,
116116
RightThumbstickPress = 14,
117117
LeftShoulder = 6,

0 commit comments

Comments
 (0)