From c191245176c8bcf120bff18df5f1bfbcf39dd84b Mon Sep 17 00:00:00 2001 From: Xpl0itU Date: Fri, 14 Oct 2022 19:14:03 +0200 Subject: [PATCH] Save batch backup with slot 0 --- src/savemng.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/savemng.cpp b/src/savemng.cpp index 7a65e2e..edd8d06 100644 --- a/src/savemng.cpp +++ b/src/savemng.cpp @@ -795,7 +795,7 @@ void backupAllSave(Title *titles, int count, OSCalendarTime *date) { bool isWii = ((highID & 0xFFFFFFF0) == 0x00010000); const std::string path = (isWii ? "/vol/storage_slccmpt01/title" : (isUSB ? "/vol/storage_usb01/usr/save" : "/vol/storage_mlc01/usr/save")); std::string srcPath = stringFormat("%s/%08x/%08x/%s", path.c_str(), highID, lowID, isWii ? "data" : "user"); - std::string dstPath = stringFormat("sd:/wiiu/backups/batch/%s/%08x%08x", datetime.c_str(), highID, lowID); + std::string dstPath = stringFormat("sd:/wiiu/backups/batch/%s/0/%08x%08x", datetime.c_str(), highID, lowID); createFolder(dstPath.c_str()); if (copyDir(srcPath, dstPath) != 0)