Fix mouse button state reporting

pull/15/head
evilC 6 years ago
parent fb1e0e5450
commit 999e82cede

@ -78,6 +78,10 @@ namespace AutoHotInterception.Helpers
{
state = stroke.mouse.rolling < 0 ? -1 : 1;
}
else
{
state = 2 - state;
}
return new ButtonState {Button = btn, State = state};
}

Loading…
Cancel
Save