mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 02:15:45 +00:00
Archives: Made the Format function more generic.
This commit is contained in:
parent
071663e074
commit
1bbf0567b1
3 changed files with 10 additions and 9 deletions
|
@ -383,15 +383,13 @@ ResultVal<Kernel::SharedPtr<Directory>> OpenDirectoryFromArchive(ArchiveHandle a
|
|||
return MakeResult<Kernel::SharedPtr<Directory>>(std::move(directory));
|
||||
}
|
||||
|
||||
ResultCode FormatSaveData() {
|
||||
// Do not create the archive again if it already exists
|
||||
auto archive_itr = id_code_map.find(ArchiveIdCode::SaveData);
|
||||
ResultCode FormatArchive(ArchiveIdCode id_code, const FileSys::Path& path) {
|
||||
auto archive_itr = id_code_map.find(id_code);
|
||||
if (archive_itr == id_code_map.end()) {
|
||||
return UnimplementedFunction(ErrorModule::FS); // TODO(Subv): Find the right error
|
||||
}
|
||||
|
||||
// Use an empty path, we do not use it when formatting the savedata
|
||||
return archive_itr->second->Format(FileSys::Path());
|
||||
return archive_itr->second->Format(path);
|
||||
}
|
||||
|
||||
ResultCode CreateExtSaveData(u32 high, u32 low) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue