mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
ncm: fix inversion in activation skipping
This commit is contained in:
parent
f7915c2c05
commit
bbcee8c77c
1 changed files with 2 additions and 2 deletions
|
@ -235,7 +235,7 @@ namespace ams::ncm {
|
||||||
auto &root = m_roots[i];
|
auto &root = m_roots[i];
|
||||||
|
|
||||||
/* If we should, skip. */
|
/* If we should, skip. */
|
||||||
if (!root.config.has_value() || root.config->skip_activate) {
|
if (root.config.has_value() && root.config->skip_activate) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -473,7 +473,7 @@ namespace ams::ncm {
|
||||||
auto &root = m_roots[i];
|
auto &root = m_roots[i];
|
||||||
|
|
||||||
/* If we should, skip. */
|
/* If we should, skip. */
|
||||||
if (!root.storage_config.has_value() || root.storage_config->skip_activate) {
|
if (root.storage_config.has_value() && root.storage_config->skip_activate) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue