Skip to content

Commit

Permalink
Add dualsense edge product id
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Dec 21, 2024
1 parent 6c96838 commit 92d88e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ios/ios_pad/source/controllers.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ int initController(uint8_t* bda, uint8_t handle)
(vendor_id == 0x045e && product_id == 0x0b0a)) { // xbox one adaptive controller
controllerInit_xbox_one(controller);
return 0;
} else if (vendor_id == 0x054c && product_id == 0x0ce6) { // dualsense
} else if ((vendor_id == 0x054c && product_id == 0x0ce6) || // dualsense
(vendor_id == 0x054c && product_id == 0x0df2)) { // dualsense edge
controllerInit_dualsense(controller);
return 0;
} else if ((vendor_id == 0x054c && product_id == 0x05c4) || // dualshock 4 v1
Expand Down

0 comments on commit 92d88e0

Please sign in to comment.