diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-10 04:29:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-10 04:29:39 +0200 |
commit | 3ac874c32ebba99c5d1402ea6b82277e7f303b93 (patch) | |
tree | fa616d3b0c8846a143916261f74278d6509233d4 /src/core/loader/xci.h | |
parent | Merge pull request #1466 from lioncash/unused (diff) | |
parent | patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptr (diff) | |
download | yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.gz yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.bz2 yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.lz yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.xz yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.tar.zst yuzu-3ac874c32ebba99c5d1402ea6b82277e7f303b93.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/xci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/xci.h b/src/core/loader/xci.h index 770ed1437..46f8dfc9e 100644 --- a/src/core/loader/xci.h +++ b/src/core/loader/xci.h @@ -49,7 +49,7 @@ private: std::unique_ptr<AppLoader_NCA> nca_loader; FileSys::VirtualFile icon_file; - std::shared_ptr<FileSys::NACP> nacp_file; + std::unique_ptr<FileSys::NACP> nacp_file; }; } // namespace Loader |