mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 05:45:46 +00:00
Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and DeleteSystemSaveData
Also fixed a bug with CreateExtSaveData that made it unable to create ExtSaveData archives in the SDMC directory.
This commit is contained in:
parent
ed5b275d21
commit
1d61cd4460
7 changed files with 240 additions and 26 deletions
|
@ -58,4 +58,14 @@ std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path)
|
|||
*/
|
||||
std::string GetExtDataContainerPath(const std::string& mount_point, bool shared);
|
||||
|
||||
/**
|
||||
* Constructs a FileSys::Path object that refers to the ExtData archive identified by
|
||||
* the specified media type, high save id and low save id.
|
||||
* @param media_type The media type where the archive is located (NAND / SDMC)
|
||||
* @param high The high word of the save id for the archive
|
||||
* @param low The low word of the save id for the archive
|
||||
* @returns A FileSys::Path to the wanted archive
|
||||
*/
|
||||
Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low);
|
||||
|
||||
} // namespace FileSys
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue