summaryrefslogtreecommitdiff
path: root/src/core/loader/nca.cpp
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-07-17 15:42:15 -0400
committerGravatar bunnei2018-07-17 12:42:15 -0700
commit69bfe075b5c3f6b17ce269950d1f8c9aab18e2de (patch)
tree8fca65bb5b3a0a8fb2b0772020d5b8d47749c3b3 /src/core/loader/nca.cpp
parentMerge pull request #671 from MerryMage/clear-exclusive-state (diff)
downloadyuzu-69bfe075b5c3f6b17ce269950d1f8c9aab18e2de.tar.gz
yuzu-69bfe075b5c3f6b17ce269950d1f8c9aab18e2de.tar.xz
yuzu-69bfe075b5c3f6b17ce269950d1f8c9aab18e2de.zip
General Filesystem and Save Data Fixes (#670)
Diffstat (limited to 'src/core/loader/nca.cpp')
-rw-r--r--src/core/loader/nca.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/nca.cpp b/src/core/loader/nca.cpp
index 0fd930ae2..b463f369c 100644
--- a/src/core/loader/nca.cpp
+++ b/src/core/loader/nca.cpp
@@ -277,8 +277,7 @@ ResultStatus AppLoader_NCA::Load(Kernel::SharedPtr<Kernel::Process>& process) {
277 metadata.GetMainThreadStackSize()); 277 metadata.GetMainThreadStackSize());
278 278
279 if (nca->GetRomFsSize() > 0) 279 if (nca->GetRomFsSize() > 0)
280 Service::FileSystem::RegisterFileSystem(std::make_unique<FileSys::RomFS_Factory>(*this), 280 Service::FileSystem::RegisterRomFS(std::make_unique<FileSys::RomFSFactory>(*this));
281 Service::FileSystem::Type::RomFS);
282 281
283 is_loaded = true; 282 is_loaded = true;
284 return ResultStatus::Success; 283 return ResultStatus::Success;