Skip to content

Commit

Permalink
Fix backup Network detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed Apr 12, 2024
1 parent 65ee9c3 commit 4f76ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void backupAccount() {
std::string backupPath;
WHBLogPrint("account.dat file read in memory.");
WHBLogConsoleDraw();
if (content.find("nintendo") == std::string::npos) {
if (content.find("nintendo") != std::string::npos) {
backupPath = NNID_BACKUP;
WHBLogPrint("Nintendo Network ID detected.");
WHBLogConsoleDraw();
Expand Down

0 comments on commit 4f76ffc

Please sign in to comment.