Skip to content

Commit

Permalink
Fix backup path (#49)
Browse files Browse the repository at this point in the history
* fix backup path

* bump version to 1.6.1
  • Loading branch information
jan-hofmeier authored Mar 31, 2024
1 parent 672f1ed commit 70e3b63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

#define VERSION_MAJOR 1
#define VERSION_MINOR 6
#define VERSION_MICRO 0
#define VERSION_MICRO 1
2 changes: 1 addition & 1 deletion meta/hbl/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<app version="1">
<name>SaveMii WUT</name>
<coder>DaThinkingChair</coder>
<version>1.6.0</version>
<version>1.6.1</version>
<release_date>20220306000000</release_date>
<short_description>WiiU/vWii Save Manager</short_description>
<long_description>WiiU/vWii Save Manager
Expand Down
2 changes: 1 addition & 1 deletion src/savemng.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ std::string newlibtoFSA(std::string path) {
}

std::string getBackupPath(uint32_t highId, uint32_t lowId, uint8_t slot){
return StringUtils::stringFormat("%s/%08x%08x/%u", backupPath, lowId, highId, slot);
return StringUtils::stringFormat("%s/%08x%08x/%u", backupPath, highId, lowId, slot);
}

std::string getLegacyBackupPath(uint32_t highId, uint32_t lowId){
Expand Down

0 comments on commit 70e3b63

Please sign in to comment.