summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nca.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-26 01:04:48 +0200
committerZach Hilman <zachhilman@gmail.com>2018-09-04 22:23:15 +0200
commit97bf83bc56860be244077e9213468466f894c73d (patch)
treec5b59ded4f150ded530b6f218e2ca52589f2628b /src/core/loader/nca.cpp
parentfile_sys: Add class to manage game patches (diff)
downloadyuzu-97bf83bc56860be244077e9213468466f894c73d.tar
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.gz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.bz2
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.lz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.xz
yuzu-97bf83bc56860be244077e9213468466f894c73d.tar.zst
yuzu-97bf83bc56860be244077e9213468466f894c73d.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/nca.cpp2
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) {
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)