Update savedumper.te

This commit is contained in:
suchmememanyskill 2020-05-09 12:05:28 +02:00 committed by GitHub
parent dce81c523c
commit 30d259f6cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,12 +50,19 @@ if (@checkInput, == , 0){
}
combineStrings("sd:/tegraexplorer/", $folder, $path)
fs_mkdir("sd:/tegraexplorer")
fs_mkdir($path)
combineStrings("Copying saves to ", $path, $out)
printf($out)
printf("Copying saves to ", $out)
printf("")
fs_copyRecursive("emmc:/save", $path)
@check = fs_copyRecursive("emmc:/save", $path)
printf("")
if (@check){
printf("Something went wrong! Errcode: ", @check)
}
if (@check, == , 0){
printf("Done, press any button to exit")
}
pause()
exit()