Skip to content

Commit 58a3d44

Browse files
committed
SteamController: Fix broken scroll on left pad introduced by 0.6.21
1 parent 531b69c commit 58a3d44

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

RELEASE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
## #{GIT_TAG_NAME}
88

9+
- SteamController: Fix broken scroll on left pad introduced by 0.6.21
10+
11+
## 0.6.21
12+
913
- SteamController: Add support for circular deadzone on left/right sticks
1014
- FanControl: Add Silent fan profile. Configure `Silent4000RPMTemp` threshold in `FanControl.dll.ini`
1115
- SteamController: Added `Win+D` shortcut under `Steam+RightStickPress`

SteamController/Profiles/Default/GuideShortcutsProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ protected void EmulateScrollOnLPad(Context c)
132132
}
133133
if (c.Steam.LPadY)
134134
{
135-
c.Mouse.HorizontalScroll(
135+
c.Mouse.VerticalScroll(
136136
c.Steam.LPadY.GetDeltaValue(
137137
Context.PadToWhellSensitivity * (double)Settings.Default.ScrollDirection,
138138
Devices.DeltaValueMode.Delta,

0 commit comments

Comments
 (0)