mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-12-02 08:42:15 +00:00
Fix logic inversion
This commit is contained in:
parent
6b35b0d6ad
commit
ebc619fe56
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ namespace sts::ncm {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (entry->GetKey().install_type != ContentInstallType::Full) {
|
if (entry->GetKey().install_type == ContentInstallType::Full) {
|
||||||
key = entry->GetKey();
|
key = entry->GetKey();
|
||||||
found_key = true;
|
found_key = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue