Skip to content

Commit 4e17332

Browse files
fixed deadzones (#2025)
1 parent dcc662f commit 4e17332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/libraries/pad/pad.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ int PS4_SYSV_ABI scePadGetControllerInformation(s32 handle, OrbisPadControllerIn
104104
pInfo->touchPadInfo.pixelDensity = 1;
105105
pInfo->touchPadInfo.resolution.x = 1920;
106106
pInfo->touchPadInfo.resolution.y = 950;
107-
pInfo->stickInfo.deadZoneLeft = 20;
108-
pInfo->stickInfo.deadZoneRight = 20;
107+
pInfo->stickInfo.deadZoneLeft = 2;
108+
pInfo->stickInfo.deadZoneRight = 2;
109109
pInfo->connectionType = ORBIS_PAD_PORT_TYPE_STANDARD;
110110
pInfo->connectedCount = 1;
111111
pInfo->connected = true;

0 commit comments

Comments
 (0)