mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +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];
|
||||
|
||||
/* If we should, skip. */
|
||||
if (!root.config.has_value() || root.config->skip_activate) {
|
||||
if (root.config.has_value() && root.config->skip_activate) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -473,7 +473,7 @@ namespace ams::ncm {
|
|||
auto &root = m_roots[i];
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue