mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
archive_source_sd_savedata: Add static method to get a specific save data path
This commit is contained in:
parent
76689cb1a2
commit
6e2d70a777
2 changed files with 7 additions and 0 deletions
|
@ -90,4 +90,9 @@ ResultVal<ArchiveFormatInfo> ArchiveSource_SDSaveData::GetFormatInfo(u64 program
|
|||
return MakeResult<ArchiveFormatInfo>(info);
|
||||
}
|
||||
|
||||
std::string ArchiveSource_SDSaveData::GetSaveDataPathFor(const std::string& mount_point,
|
||||
u64 program_id) {
|
||||
return GetSaveDataPath(GetSaveDataContainerPath(mount_point), program_id);
|
||||
}
|
||||
|
||||
} // namespace FileSys
|
||||
|
|
|
@ -23,6 +23,8 @@ public:
|
|||
ResultCode Format(u64 program_id, const FileSys::ArchiveFormatInfo& format_info);
|
||||
ResultVal<ArchiveFormatInfo> GetFormatInfo(u64 program_id) const;
|
||||
|
||||
static std::string GetSaveDataPathFor(const std::string& mount_point, u64 program_id);
|
||||
|
||||
private:
|
||||
std::string mount_point;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue