1
0
Fork 0
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:
Adubbz 2019-07-27 23:11:17 +10:00
parent 6b35b0d6ad
commit ebc619fe56

View file

@ -169,7 +169,7 @@ namespace sts::ncm {
break;
}
if (entry->GetKey().install_type != ContentInstallType::Full) {
if (entry->GetKey().install_type == ContentInstallType::Full) {
key = entry->GetKey();
found_key = true;
}