Skip to content

Commit

Permalink
don't show WPA2 setting on ADR
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Feb 9, 2025
1 parent 66084a4 commit 932f39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/modules/xmbctrl/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ void AddSysconfContextItem(char *text, char *subtitle, char *regkey)
}

int skipSetting(int i){
if (IS_VITA_ADR((ark_config))) return ( i==0 || i==5 || i==9 || i==12 || i==14 || i == 15 || i==16);
if (IS_VITA_ADR((ark_config))) return ( i==0 || i==5 || i==9 || i==12 || i==14 || i == 15 || i==16 || i==18);
else if (psp_model == PSP_1000) return ( i == 0 || i == 5 || i == 6 || i == 9 || i == 12);
else if (psp_model == PSP_11000) return ( i == 5 || i == 9 || i == 12 || i == 13);
else if (psp_model != PSP_GO) return ( i == 5 || i == 9 || i == 12);
Expand Down

0 comments on commit 932f39f

Please sign in to comment.