Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #361 from LPFaint99/wiisave
Export wii saves to the "User" directory
  • Loading branch information
shuffle2 committed May 22, 2014
2 parents 9ce269c + 1b65456 commit 6544d53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Core/DolphinWX/MemoryCards/WiiSaveCrypted.cpp
Expand Up @@ -572,7 +572,9 @@ bool CWiiSaveCrypted::getPaths(bool forExport)
return false;
}
if (encryptedSavePath.length() == 0)
encryptedSavePath = "."; // If no path was passed, use current dir
{
encryptedSavePath = File::GetUserPath(D_USER_IDX); // If no path was passed, use User folder
}
encryptedSavePath += StringFromFormat("/private/wii/title/%s/data.bin", GameID);
File::CreateFullPath(encryptedSavePath);
}
Expand Down

0 comments on commit 6544d53

Please sign in to comment.