Skip to content

Commit

Permalink
Ugh this value needs to be configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
1Revenger1 authored and Gwydien committed Oct 6, 2024
1 parent b1c77a0 commit 157dbf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VoodooRMI/Functions/Input/RMITrackpadFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ void RMITrackpadFunction::handleReport(RMI2DSensorReport *report)
/* fall through */
case RMI_FINGER_VALID:
if (obj.z > RMI_2D_MAX_Z ||
obj.wx * data.umPerTraceX > 250 ||
obj.wy * data.umPerTraceY > 250 ||
obj.wx * data.umPerTraceX > 500 ||
obj.wy * data.umPerTraceY > 500 ||
obj.type == RMI_2D_OBJECT_INACCURATE) {

fingerState[i] = RMI_FINGER_INVALID;
Expand Down

0 comments on commit 157dbf9

Please sign in to comment.