Disable rare message for 0x74 and 0x93
This commit is contained in:
parent
ad38ee688c
commit
5ed9b14616
2
core.js
2
core.js
@ -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() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user