diff options
| author | 2018-08-25 19:04:48 -0400 | |
|---|---|---|
| committer | 2018-09-04 16:23:15 -0400 | |
| commit | 97bf83bc56860be244077e9213468466f894c73d (patch) | |
| tree | c5b59ded4f150ded530b6f218e2ca52589f2628b /src/core/loader/nca.cpp | |
| parent | file_sys: Add class to manage game patches (diff) | |
| download | yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.gz yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.xz yuzu-97bf83bc56860be244077e9213468466f894c73d.zip | |
patch_manager: Add usages of patches to ExeFS
Diffstat (limited to 'src/core/loader/nca.cpp')
| -rw-r--r-- | src/core/loader/nca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nca.cpp b/src/core/loader/nca.cpp index c036a8a1c..6b1c27b47 100644 --- a/src/core/loader/nca.cpp +++ b/src/core/loader/nca.cpp | |||
| @@ -48,7 +48,7 @@ ResultStatus AppLoader_NCA::Load(Kernel::SharedPtr<Kernel::Process>& process) { | |||
| 48 | if (exefs == nullptr) | 48 | if (exefs == nullptr) |
| 49 | return ResultStatus::ErrorNoExeFS; | 49 | return ResultStatus::ErrorNoExeFS; |
| 50 | 50 | ||
| 51 | directory_loader = std::make_unique<AppLoader_DeconstructedRomDirectory>(exefs); | 51 | directory_loader = std::make_unique<AppLoader_DeconstructedRomDirectory>(exefs, true); |
| 52 | 52 | ||
| 53 | const auto load_result = directory_loader->Load(process); | 53 | const auto load_result = directory_loader->Load(process); |
| 54 | if (load_result != ResultStatus::Success) | 54 | if (load_result != ResultStatus::Success) |