Disable rare message for 0x74 and 0x93

This commit is contained in:
dualshock-tools 2024-04-28 10:20:45 +02:00
parent ad38ee688c
commit 5ed9b14616

View File

@ -81,7 +81,7 @@ function ds4_hw_to_bm(hw_ver) {
function is_rare(hw_ver) { function is_rare(hw_ver) {
a = hw_ver >> 8; a = hw_ver >> 8;
b = a >> 4; b = a >> 4;
return (b == 7 || b == 9 || a == 0xb0 || a == 0xa0); return ((b == 7 && a != 0x74) || (b == 9 && a != 0x93) || a == 0xb0 || a == 0xa0);
} }
async function ds4_info() { async function ds4_info() {