Fix alloc-size for 0xa0 request

This commit is contained in:
dualshock-tools 2024-06-24 18:03:09 +02:00
parent 346add9b3e
commit ca88ac20b6

View File

@ -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) {
}
}