mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
ncm: fix exfat system updates
This commit is contained in:
parent
3295132946
commit
9003ad6e49
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace ams::ncm {
|
|||
R_TRY(this->data.Initialize(context_path));
|
||||
|
||||
/* Initialize PackageInstallTaskBase. */
|
||||
u32 config = requires_exfat_driver ? InstallConfig_SystemUpdate : InstallConfig_SystemUpdate | InstallConfig_RequiresExFatDriver;
|
||||
u32 config = !requires_exfat_driver ? InstallConfig_SystemUpdate : InstallConfig_SystemUpdate | InstallConfig_RequiresExFatDriver;
|
||||
R_TRY(PackageInstallTaskBase::Initialize(package_root, buffer, buffer_size, StorageId::BuiltInSystem, std::addressof(this->data), config));
|
||||
|
||||
/* Cancel guards. */
|
||||
|
|
Loading…
Reference in a new issue