Skip to content

Commit

Permalink
Merge pull request #3 from CoolOppo/patch-1
Browse files Browse the repository at this point in the history
Merge Pull Request: Fix a wrong instruction when releasing the left click of the mouse.
  • Loading branch information
Jämes Ménétrey committed May 25, 2014
2 parents c9db72b + a5f5ae0 commit 9a7e714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MemorySharp/Windows/Mouse/SendInputMouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public override void PressRight()
public override void ReleaseLeft()
{
var input = CreateInput();
input.Mouse.Flags = MouseFlags.RightUp;
input.Mouse.Flags = MouseFlags.LeftUp;
WindowCore.SendInput(input);
}
#endregion
Expand Down

0 comments on commit 9a7e714

Please sign in to comment.