Skip to content

Commit

Permalink
Fix save files not being read
Browse files Browse the repository at this point in the history
  • Loading branch information
Crementif committed Jun 7, 2022
1 parent c5d9549 commit 12935ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/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>Crementif and emiyl</coder>
<version>2.4.1</version>
<version>2.4.3</version>
<release_date>20200813200000</release_date>
<short_description>Simple Cemu File Dumper</short_description>
<long_description>A simple, all-in-one Wii U file dumper! Developed with the intent of making dumping games and other files for Cemu faster and easier.</long_description>
Expand Down
4 changes: 2 additions & 2 deletions source/app/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void showLoadingScreen() {
WHBLogFreetypeSetBackgroundColor(0x0b5d5e00);
WHBLogFreetypeSetFontColor(0xFFFFFFFF);
WHBLogFreetypeSetFontSize(22, 0);
WHBLogPrint("Dumpling V2.4.2");
WHBLogPrint("Dumpling V2.4.3");
WHBLogPrint("-- Made by Crementif and Emiyl --");
WHBLogPrint("");
WHBLogFreetypeDraw();
Expand All @@ -27,7 +27,7 @@ void showMainMenu() {
while(!startSelectedOption) {
// Print menu text
WHBLogFreetypeStartScreen();
WHBLogPrint("Dumpling V2.4.2");
WHBLogPrint("Dumpling V2.4.3");
WHBLogPrint("===============================");
WHBLogPrintf("%c Dump a game disc", selectedOption==0 ? '>' : ' ');
WHBLogPrintf("%c Dump digital games", selectedOption==1 ? '>' : ' ');
Expand Down
2 changes: 1 addition & 1 deletion source/app/titles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ bool getSaveList(std::string saveDirPath) {

uint32_t lowTitleId = strtoul((const char*)&lowDirEntry->d_name, nullptr, 16);
if (lowTitleId == 0) continue;
std::string lowDirPath = highDirPath + lowDirEntry->d_name;
std::string lowDirPath = highDirPath + lowDirEntry->d_name + "/";

const auto& currSavePart = rawSaves.try_emplace(lowTitleId, savePart{.savePath = lowDirPath.c_str(), .titleHighId = highTitleId});

Expand Down

0 comments on commit 12935ed

Please sign in to comment.