mirror of
https://github.com/hacks-guide/Guide_3DS.git
synced 2025-08-27 18:29:51 +02:00
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:
committed by
lifehackerhansol
parent
af618b13cd
commit
0a3aa8b8a1
@@ -45,11 +45,11 @@ function can_ssloth(major, minor, native, region, model) {
|
|||||||
} else if (region == "K") {
|
} else if (region == "K") {
|
||||||
if
|
if
|
||||||
(
|
(
|
||||||
(!model && minor == 4 && native == 33) ||
|
(model && minor == 4 && native == 33) ||
|
||||||
(!model && minor == 5 && native == 34) ||
|
(model && minor == 5 && native == 34) ||
|
||||||
(!model && minor == 6 && native == 35) ||
|
(model && minor == 6 && native == 35) ||
|
||||||
(!model && minor == 7 && native == 35) ||
|
(model && minor == 7 && native == 35) ||
|
||||||
(!model && minor == 8 && native == 35) ||
|
(model && minor == 8 && native == 35) ||
|
||||||
(minor == 9 && native == 36) ||
|
(minor == 9 && native == 36) ||
|
||||||
(minor == 10 && native == 37) ||
|
(minor == 10 && native == 37) ||
|
||||||
(minor == 12 && native == 38) ||
|
(minor == 12 && native == 38) ||
|
||||||
|
Reference in New Issue
Block a user