mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-19 22:57:50 +00:00
file_sys: tolerate empty NCA
This commit is contained in:
parent
1cecd1d96a
commit
a1ea1c3dd3
3 changed files with 3 additions and 3 deletions
|
@ -249,7 +249,7 @@ void NSP::ReadNCAs(const std::vector<VirtualFile>& files) {
|
|||
}
|
||||
|
||||
const auto nca = std::make_shared<NCA>(outer_file);
|
||||
if (nca->GetStatus() != Loader::ResultStatus::Success) {
|
||||
if (nca->GetStatus() != Loader::ResultStatus::Success || nca->GetSubdirectories().empty()) {
|
||||
program_status[nca->GetTitleId()] = nca->GetStatus();
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue