mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 06:37:56 -05:00
file_sys: tolerate empty NCA
This commit is contained in:
@ -185,7 +185,7 @@ u32 XCI::GetSystemUpdateVersion() {
|
||||
for (const auto& update_file : update->GetFiles()) {
|
||||
NCA nca{update_file};
|
||||
|
||||
if (nca.GetStatus() != Loader::ResultStatus::Success) {
|
||||
if (nca.GetStatus() != Loader::ResultStatus::Success || nca.GetSubdirectories().empty()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user