diff options
| author | 2018-10-09 22:29:39 -0400 | |
|---|---|---|
| committer | 2018-10-09 22:29:39 -0400 | |
| commit | 3ac874c32ebba99c5d1402ea6b82277e7f303b93 (patch) | |
| tree | fa616d3b0c8846a143916261f74278d6509233d4 /src/core/loader/xci.cpp | |
| parent | Merge pull request #1466 from lioncash/unused (diff) | |
| parent | patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControl... (diff) | |
| download | yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.gz yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.xz yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.zip | |
Merge pull request #1464 from lioncash/unique
patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptr
Diffstat (limited to 'src/core/loader/xci.cpp')
| -rw-r--r-- | src/core/loader/xci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/xci.cpp b/src/core/loader/xci.cpp index ee5452eb9..7a619acb4 100644 --- a/src/core/loader/xci.cpp +++ b/src/core/loader/xci.cpp | |||
| @@ -30,7 +30,7 @@ AppLoader_XCI::AppLoader_XCI(FileSys::VirtualFile file) | |||
| 30 | return; | 30 | return; |
| 31 | 31 | ||
| 32 | std::tie(nacp_file, icon_file) = | 32 | std::tie(nacp_file, icon_file) = |
| 33 | FileSys::PatchManager(xci->GetProgramTitleID()).ParseControlNCA(control_nca); | 33 | FileSys::PatchManager(xci->GetProgramTitleID()).ParseControlNCA(*control_nca); |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | AppLoader_XCI::~AppLoader_XCI() = default; | 36 | AppLoader_XCI::~AppLoader_XCI() = default; |