Implement folder copy

+ Change error messaging internally
+ inproved recursive file deletion
This commit is contained in:
Such Meme, Many Skill
2020-01-04 20:18:26 +01:00
parent 6d75aa688c
commit ef76834ef4
8 changed files with 189 additions and 50 deletions

View File

@@ -86,7 +86,7 @@ void te_main(){
int res;
if (dump_biskeys() == -1){
message("Biskeys failed to dump!\nEmmc will not be mounted!", COLOR_RED);
message(COLOR_RED, "Biskeys failed to dump!\nEmmc will not be mounted!");
mainmenu[1].property = -1;
mainmenu[2].property = -1;
mainmenu[3].property = -1;
@@ -110,7 +110,7 @@ void te_main(){
fileexplorer("emmc:/");
}
else
message("EMMC failed to mount!", COLOR_RED);
message(COLOR_RED, "EMMC failed to mount!");
}
break;
@@ -153,7 +153,7 @@ void te_main(){
break;
case CREDITS:
message(CREDITS_MESSAGE, COLOR_WHITE);
message(COLOR_WHITE, CREDITS_MESSAGE);
break;
case EXIT: