diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-16 18:29:24 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-16 19:15:19 -0400 |
commit | a62c1999c520f88513d9b0cf6e3a5c3a548d51ac (patch) | |
tree | 988f711352f4ec0bd56bd4a517a8b2b628fcb9f9 /src/core/loader/nro.cpp | |
parent | 0e80567bef380843f5fc9bc00b70f14c4bd577b1 (diff) |
file_sys/romfs_factory: Eliminate usage of the global system accessor
Diffstat (limited to 'src/core/loader/nro.cpp')
-rw-r--r-- | src/core/loader/nro.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/nro.cpp b/src/core/loader/nro.cpp index 5ce279f81..9fb5eddad 100644 --- a/src/core/loader/nro.cpp +++ b/src/core/loader/nro.cpp @@ -218,8 +218,8 @@ AppLoader_NRO::LoadResult AppLoader_NRO::Load(Kernel::Process& process, Core::Sy } if (romfs != nullptr) { - 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; |