ExtSaveData: More fixes

This commit is contained in:
wheremyfoodat 2025-02-10 02:14:56 +02:00
parent f4c32bfdc9
commit 40cdccef51
2 changed files with 16 additions and 8 deletions

View file

@ -261,7 +261,6 @@ Rust::Result<ArchiveBase::FormatInfo, HorizonResult> ExtSaveDataArchive::getForm
return Err(Result::FS::NotFormatted);
}
ret.size = 0;
return Ok(ret);
}
@ -287,12 +286,6 @@ Rust::Result<ArchiveBase*, HorizonResult> ExtSaveDataArchive::openArchive(const
Helpers::panic("ExtSaveData accessed with an invalid path in OpenArchive");
}
if (isShared) {
const fs::path saveDataPath = IOFile::getAppData() / getExtSaveDataPath();
if (!fs::exists(saveDataPath)) fs::create_directories(saveDataPath);
return Ok((ArchiveBase*)this);
}
// Create a format info path in the style of AppData/FormatInfo/Cartridge10390390194.format
const fs::path formatInfoPath = getFormatInfoPath(path);
// Format info not found so the archive is not formatted
@ -300,6 +293,16 @@ Rust::Result<ArchiveBase*, HorizonResult> ExtSaveDataArchive::openArchive(const
return isNAND ? Err(Result::FS::NotFormatted) : Err(Result::FS::NotFoundInvalid);
}
// TODO: Do shared archives need to be formatted?
if (isShared) {
const fs::path saveDataPath = IOFile::getAppData() / getExtSaveDataPath();
if (!fs::exists(saveDataPath)) {
fs::create_directories(saveDataPath);
}
return Ok((ArchiveBase*)this);
}
return Ok((ArchiveBase*)this);
}

View file

@ -590,7 +590,12 @@ void FSService::createExtSaveData(u32 messagePointer) {
const u32 smdhSize = mem.read32(messagePointer + 36);
const u32 smdhPointer = mem.read32(messagePointer + 44);
ArchiveBase::FormatInfo info{.size = 0, .numOfDirectories = numOfDirectories, .numOfFiles = numOfFiles, .duplicateData = false};
ArchiveBase::FormatInfo info{
.size = u32(sizeLimit),
.numOfDirectories = numOfDirectories,
.numOfFiles = numOfFiles,
.duplicateData = false,
};
FSPath path = readPath(PathType::Binary, messagePointer + 4, 32);
ExtSaveDataArchive* selected = nullptr;