Skip to content

Commit

Permalink
Fix #21
Browse files Browse the repository at this point in the history
  • Loading branch information
evilC committed Jan 27, 2019
1 parent 5cab8fc commit 654d249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- [MIDI Provider] Pitch Wheel now works in Bind Mode
- [MIDI Provider] Fix notes, CCs etc only reaching 32766 instead of 32767
- [MIDI Provider] ProcessUpdate no longer crashes if preProcessedUpdates is null
- [Interception Provider] Left/Right Mouse Wheel labels are no longer switched

##0.10.0 - 2019-01-03
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Core_Interception.DeviceLibrary
{
public static class StaticData
{
public static readonly List<string> MouseButtonNames = new List<string> { "Left Mouse", "Right Mouse", "Middle Mouse", "Side Button 1", "Side Button 2", "Wheel Up", "Wheel Down", "Wheel Left", "Wheel Right" };
public static readonly List<string> MouseButtonNames = new List<string> { "Left Mouse", "Right Mouse", "Middle Mouse", "Side Button 1", "Side Button 2", "Wheel Up", "Wheel Down", "Wheel Right", "Wheel Left" };

public static readonly BindingReport[] MouseAxisBindingReports = { new BindingReport
{
Expand Down

0 comments on commit 654d249

Please sign in to comment.