mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Revert SharedExtSaveData format change
This commit is contained in:
parent
40cdccef51
commit
d301b965db
1 changed files with 7 additions and 7 deletions
|
@ -286,13 +286,6 @@ Rust::Result<ArchiveBase*, HorizonResult> ExtSaveDataArchive::openArchive(const
|
|||
Helpers::panic("ExtSaveData accessed with an invalid path in OpenArchive");
|
||||
}
|
||||
|
||||
// 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
|
||||
if (!fs::is_regular_file(formatInfoPath)) {
|
||||
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();
|
||||
|
@ -303,6 +296,13 @@ Rust::Result<ArchiveBase*, HorizonResult> ExtSaveDataArchive::openArchive(const
|
|||
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
|
||||
if (!fs::is_regular_file(formatInfoPath)) {
|
||||
return isNAND ? Err(Result::FS::NotFormatted) : Err(Result::FS::NotFoundInvalid);
|
||||
}
|
||||
|
||||
return Ok((ArchiveBase*)this);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue