Skip to content

Commit

Permalink
really fix rednand
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-hofmeier committed Apr 5, 2024
1 parent 3e25bea commit 0abdd4e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/main.c
Expand Up @@ -1201,8 +1201,13 @@ void main_quickboot_patch_rednand(void)
return;
}
boot.vector = ancast_patch_load("redslc:/sys/title/00050010/1000400a/code/fw.img", "ios.patch", sd_plugin_dir, true);
} else
} else {
if(isfs_init(ISFSVOL_SLC)<0){
console_power_to_continue();
return;
}
boot.vector = ancast_patch_load("slc:/sys/title/00050010/1000400a/code/fw.img", "ios.patch", sd_plugin_dir, true);
}
boot.is_patched = 1;
boot.needs_otp = 1;

Expand Down

0 comments on commit 0abdd4e

Please sign in to comment.