Skip to content

Commit

Permalink
Use Magic Trackpad 2 ID instead of SPI touchpad ID
Browse files Browse the repository at this point in the history
macOS Sequoia dropped the IOKit personalities for all the SPI touchpads, including the one used by VoodooInput.
  • Loading branch information
1Revenger1 committed Jun 12, 2024
1 parent 3de53b0 commit 57aeefa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ OSNumber* VoodooInputActuatorDevice::newPrimaryUsagePageNumber() const {
}

OSNumber* VoodooInputActuatorDevice::newProductIDNumber() const {
return OSNumber::withNumber(0x272, 32);
return OSNumber::withNumber(0x265, 32);
}

OSString* VoodooInputActuatorDevice::newProductString() const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ OSNumber* VoodooInputSimulatorDevice::newPrimaryUsagePageNumber() const {
}

OSNumber* VoodooInputSimulatorDevice::newProductIDNumber() const {
return OSNumber::withNumber(0x272, 32);
return OSNumber::withNumber(0x265, 32);
}

OSString* VoodooInputSimulatorDevice::newProductString() const {
Expand Down

0 comments on commit 57aeefa

Please sign in to comment.