Fix broken KOR SSLoth-Browser again... actually fix more this time
Well, I'll say never mix integer with bool This new version literally inverted new/old for kor I originally wrote it as !old, it's literally now !(new=1=true)
This commit is contained in:
parent
af618b13cd
commit
0a3aa8b8a1
1 changed files with 5 additions and 5 deletions
|
@ -45,11 +45,11 @@ function can_ssloth(major, minor, native, region, model) {
|
|||
} else if (region == "K") {
|
||||
if
|
||||
(
|
||||
(!model && minor == 4 && native == 33) ||
|
||||
(!model && minor == 5 && native == 34) ||
|
||||
(!model && minor == 6 && native == 35) ||
|
||||
(!model && minor == 7 && native == 35) ||
|
||||
(!model && minor == 8 && native == 35) ||
|
||||
(model && minor == 4 && native == 33) ||
|
||||
(model && minor == 5 && native == 34) ||
|
||||
(model && minor == 6 && native == 35) ||
|
||||
(model && minor == 7 && native == 35) ||
|
||||
(model && minor == 8 && native == 35) ||
|
||||
(minor == 9 && native == 36) ||
|
||||
(minor == 10 && native == 37) ||
|
||||
(minor == 12 && native == 38) ||
|
||||
|
|
Loading…
Reference in a new issue