Skip to content

Commit

Permalink
fixed noanalog bug
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Oct 3, 2023
1 parent 3877d73 commit 1873bbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extras/menus/recovery/include/ark_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ void loadSettings(){
FIX_BOOLEAN(cfw_config.hidemac);
FIX_BOOLEAN(cfw_config.hidedlc);
FIX_BOOLEAN(cfw_config.noumd);
FIX_BOOLEAN(cfw_config.noanalog);
}

static string processSetting(string name, unsigned char setting){
Expand Down Expand Up @@ -720,7 +721,7 @@ void saveSettings(){
output << processSetting("hidedlc", cfw_config.hidedlc) << endl;
output << processSetting("noled", cfw_config.noled) << endl;
output << processSetting("noumd", cfw_config.noumd) << endl;
output << processSetting("noanalog", cfw_config.noumd) << endl;
output << processSetting("noanalog", cfw_config.noanalog) << endl;

switch (cfw_config.regionchange){
case REGION_JAPAN:
Expand Down

0 comments on commit 1873bbb

Please sign in to comment.