Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
Minor extra print line
Browse files Browse the repository at this point in the history
Needed to preserve as I switch to jay branch
  • Loading branch information
Ryochan7 committed Jul 31, 2020
1 parent 6980629 commit 4dd8c98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions DS4Windows/DS4Control/OutputKBM/VMultiHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ private void Release()

public override void MoveRelativeMouse(int x, int y)
{
//Console.WriteLine("RAW MOUSE {0} {1}", x, y);
mouseReport.ResetMousePos();
mouseReport.MouseX = (byte)(x < -127 ? 127 : (x > 127) ? 127 : x);
mouseReport.MouseY = (byte)(y < -127 ? 127 : (y > 127) ? 127 : y);
Expand Down

0 comments on commit 4dd8c98

Please sign in to comment.