Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
changed dumping dir for account data to account_data
Browse files Browse the repository at this point in the history
  • Loading branch information
emiyl committed May 3, 2020
1 parent e472526 commit 2a902ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion meta/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<app version="1">
<name>dumpling</name>
<coder>emiyl</coder>
<version>1.1</version>
<version>1.1.1</version>
<release_date>20200503200000</release_date>
<short_description>Simple Cemu File Dumper</short_description>
<long_description>Dumpling is a simple Wii U file dumper, developed with the intent of making Cemu set-up faster and easier.</long_description>
Expand Down
6 changes: 3 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ int dumpFunc(const char *path, const char *dump_dir, int dev, int dump_source, i
strcpy(targetPath, "dev:/");

if (dump_target) strcpy(toDrive, "usb");
if (!strcmp(dump_dir,"online_files/mlc01"))
if (!strcmp(dump_dir,"account_data/mlc01"))
snprintf(toDir, sizeof(toDir), "%s:/dumpling/%s/%s", toDrive, dump_dir, path + 13);
else
snprintf(toDir, sizeof(toDir), "%s:/dumpling/%s", toDrive, dump_dir);
Expand Down Expand Up @@ -337,7 +337,7 @@ char **usb_stored_folders = NULL;

int dumpPart[4] = {1,0,0,0};

const char head_string[50] = "-- dumpling v1.1 by emiyl --";
const char head_string[50] = "-- dumpling v1.1.1 by emiyl --";

int select_menu() {
InitOSFunctionPointers();
Expand Down Expand Up @@ -1066,7 +1066,7 @@ int Menu_Main(void)

static const char* mlc_selection_dir[] =
{
"online_files/mlc01",
"account_data/mlc01",
"friends_list",
"disc/undefined",
"games",
Expand Down
2 changes: 1 addition & 1 deletion wiiu/apps/dumpling/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<app version="1">
<name>dumpling</name>
<coder>emiyl</coder>
<version>1.1</version>
<version>1.1.1</version>
<release_date>20200503200000</release_date>
<short_description>Simple Cemu File Dumper</short_description>
<long_description>Dumpling is a simple Wii U file dumper, developed with the intent of making Cemu set-up faster and easier.</long_description>
Expand Down

0 comments on commit 2a902ac

Please sign in to comment.