Skip to content

Commit

Permalink
SteamController: Fix broken scroll on left pad introduced by 0.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ayufan committed Sep 24, 2023
1 parent 531b69c commit 58a3d44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

## #{GIT_TAG_NAME}

- SteamController: Fix broken scroll on left pad introduced by 0.6.21

## 0.6.21

- SteamController: Add support for circular deadzone on left/right sticks
- FanControl: Add Silent fan profile. Configure `Silent4000RPMTemp` threshold in `FanControl.dll.ini`
- SteamController: Added `Win+D` shortcut under `Steam+RightStickPress`
Expand Down
2 changes: 1 addition & 1 deletion SteamController/Profiles/Default/GuideShortcutsProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ protected void EmulateScrollOnLPad(Context c)
}
if (c.Steam.LPadY)
{
c.Mouse.HorizontalScroll(
c.Mouse.VerticalScroll(
c.Steam.LPadY.GetDeltaValue(
Context.PadToWhellSensitivity * (double)Settings.Default.ScrollDirection,
Devices.DeltaValueMode.Delta,
Expand Down

0 comments on commit 58a3d44

Please sign in to comment.