summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nca.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-17 00:29:24 +0200
committerLioncash <mathew1800@gmail.com>2020-09-17 01:15:19 +0200
commita62c1999c520f88513d9b0cf6e3a5c3a548d51ac (patch)
tree988f711352f4ec0bd56bd4a517a8b2b628fcb9f9 /src/core/loader/nca.cpp
parentfile_sys/bis_factory: Eliminate usage of the global system accessor (diff)
downloadyuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar.gz
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar.bz2
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar.lz
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar.xz
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.tar.zst
yuzu-a62c1999c520f88513d9b0cf6e3a5c3a548d51ac.zip
Diffstat (limited to 'src/core/loader/nca.cpp')
-rw-r--r--src/core/loader/nca.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/nca.cpp b/src/core/loader/nca.cpp
index 50d7a0f32..fa694de37 100644
--- a/src/core/loader/nca.cpp
+++ b/src/core/loader/nca.cpp
@@ -58,8 +58,8 @@ AppLoader_NCA::LoadResult AppLoader_NCA::Load(Kernel::Process& process, Core::Sy
}
if (nca->GetRomFS() != nullptr && nca->GetRomFS()->GetSize() > 0) {
- system.GetFileSystemController().RegisterRomFS(
- std::make_unique<FileSys::RomFSFactory>(*this));
+ system.GetFileSystemController().RegisterRomFS(std::make_unique<FileSys::RomFSFactory>(
+ *this, system.GetContentProvider(), system.GetFileSystemController()));
}
is_loaded = true;