diff options
| author | 2017-09-25 18:24:12 -0500 | |
|---|---|---|
| committer | 2017-09-25 18:24:12 -0500 | |
| commit | fd30d48ceb7d513923d01a68e568668b6d4d3e7f (patch) | |
| tree | 897ebb18a3cff721f402d0be73559f4694d4b1d8 /src/core/loader/ncch.cpp | |
| parent | Merge pull request #2952 from MerryMage/page-tables (diff) | |
| parent | HLE/Archives: Allow multiple loaded applications to access their SelfNCCH arc... (diff) | |
| download | yuzu-fd30d48ceb7d513923d01a68e568668b6d4d3e7f.tar.gz yuzu-fd30d48ceb7d513923d01a68e568668b6d4d3e7f.tar.xz yuzu-fd30d48ceb7d513923d01a68e568668b6d4d3e7f.zip | |
Merge pull request #2947 from Subv/selfncch_factory
HLE/Archives: Allow multiple loaded applications to access their SelfNCCH archive independently.
Diffstat (limited to 'src/core/loader/ncch.cpp')
| -rw-r--r-- | src/core/loader/ncch.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/ncch.cpp b/src/core/loader/ncch.cpp index c46d7cfc6..5107135f9 100644 --- a/src/core/loader/ncch.cpp +++ b/src/core/loader/ncch.cpp | |||
| @@ -187,8 +187,7 @@ ResultStatus AppLoader_NCCH::Load() { | |||
| 187 | if (ResultStatus::Success != result) | 187 | if (ResultStatus::Success != result) |
| 188 | return result; | 188 | return result; |
| 189 | 189 | ||
| 190 | Service::FS::RegisterArchiveType(std::make_unique<FileSys::ArchiveFactory_SelfNCCH>(*this), | 190 | Service::FS::RegisterSelfNCCH(*this); |
| 191 | Service::FS::ArchiveIdCode::SelfNCCH); | ||
| 192 | 191 | ||
| 193 | ParseRegionLockoutInfo(); | 192 | ParseRegionLockoutInfo(); |
| 194 | 193 | ||