Skip to content

Commit

Permalink
Remove extra check
Browse files Browse the repository at this point in the history
  • Loading branch information
1Revenger1 committed Jul 29, 2024
1 parent cac437b commit d14def9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VoodooRMI/Functions/Input/RMITrackpadFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void RMITrackpadFunction::handleReport(RMI2DSensorReport *report)
/* fall through */
case RMI_FINGER_STARTED_IN_ZONE: {
size_t zone = checkInZone(transducer);
if (zone == 0 && obj.z > 20) {
if (zone == 0) {
fingerState[i] = RMI_FINGER_VALID;
}

Expand Down

0 comments on commit d14def9

Please sign in to comment.