mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
ExtSaveData: More fixes
This commit is contained in:
parent
f4c32bfdc9
commit
40cdccef51
2 changed files with 16 additions and 8 deletions
|
@ -261,7 +261,6 @@ Rust::Result<ArchiveBase::FormatInfo, HorizonResult> ExtSaveDataArchive::getForm
|
||||||
return Err(Result::FS::NotFormatted);
|
return Err(Result::FS::NotFormatted);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret.size = 0;
|
|
||||||
return Ok(ret);
|
return Ok(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -287,12 +286,6 @@ Rust::Result<ArchiveBase*, HorizonResult> ExtSaveDataArchive::openArchive(const
|
||||||
Helpers::panic("ExtSaveData accessed with an invalid path in OpenArchive");
|
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
|
// Create a format info path in the style of AppData/FormatInfo/Cartridge10390390194.format
|
||||||
const fs::path formatInfoPath = getFormatInfoPath(path);
|
const fs::path formatInfoPath = getFormatInfoPath(path);
|
||||||
// Format info not found so the archive is not formatted
|
// 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);
|
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);
|
return Ok((ArchiveBase*)this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -590,7 +590,12 @@ void FSService::createExtSaveData(u32 messagePointer) {
|
||||||
const u32 smdhSize = mem.read32(messagePointer + 36);
|
const u32 smdhSize = mem.read32(messagePointer + 36);
|
||||||
const u32 smdhPointer = mem.read32(messagePointer + 44);
|
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);
|
FSPath path = readPath(PathType::Binary, messagePointer + 4, 32);
|
||||||
|
|
||||||
ExtSaveDataArchive* selected = nullptr;
|
ExtSaveDataArchive* selected = nullptr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue