patch_manager: Add usages of patches to ExeFS

This commit is contained in:
Zach Hilman 2018-08-25 19:04:48 -04:00
parent 8e900a301a
commit 97bf83bc56
5 changed files with 41 additions and 9 deletions

View file

@ -48,7 +48,7 @@ ResultStatus AppLoader_NCA::Load(Kernel::SharedPtr<Kernel::Process>& process) {
if (exefs == nullptr)
return ResultStatus::ErrorNoExeFS;
directory_loader = std::make_unique<AppLoader_DeconstructedRomDirectory>(exefs);
directory_loader = std::make_unique<AppLoader_DeconstructedRomDirectory>(exefs, true);
const auto load_result = directory_loader->Load(process);
if (load_result != ResultStatus::Success)