Skip to content

Commit

Permalink
Fix alloc-size for 0xa0 request
Browse files Browse the repository at this point in the history
  • Loading branch information
dualshock-tools committed Jun 24, 2024
1 parent 346add9 commit ca88ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ async function ds4_info() {
async function ds4_reset() {
la("ds4_reset");
try {
await device.sendFeatureReport(0xa0, alloc_req(0x80, [4,1,0]))
await device.sendFeatureReport(0xa0, alloc_req(0xa0, [4,1,0]))
} catch(error) {
}
}
Expand Down

0 comments on commit ca88ac2

Please sign in to comment.