summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/xts_archive.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-20 16:13:10 +0200
committerGitHub <noreply@github.com>2018-09-20 16:13:10 +0200
commitb02a1e38fa14613122c69bc4e708785d28416ea7 (patch)
tree46be6c81a0dbec6578cb4a11c13e2f5c1acd2632 /src/core/file_sys/xts_archive.h
parentMerge pull request #1366 from ogniK5377/splat-fix (diff)
parentxts_archive: Remove unused variables from CalculateHMAC256() (diff)
downloadyuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar.gz
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar.bz2
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar.lz
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar.xz
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.tar.zst
yuzu-b02a1e38fa14613122c69bc4e708785d28416ea7.zip
Diffstat (limited to 'src/core/file_sys/xts_archive.h')
-rw-r--r--src/core/file_sys/xts_archive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/xts_archive.h b/src/core/file_sys/xts_archive.h
index 55d2154a6..6e2fc4d2e 100644
--- a/src/core/file_sys/xts_archive.h
+++ b/src/core/file_sys/xts_archive.h
@@ -38,7 +38,7 @@ public:
VirtualFile GetDecrypted() const;
- std::shared_ptr<NCA> AsNCA() const;
+ std::unique_ptr<NCA> AsNCA() const;
NAXContentType GetContentType() const;
@@ -60,7 +60,7 @@ private:
VirtualFile file;
Loader::ResultStatus status;
- NAXContentType type;
+ NAXContentType type{};
VirtualFile dec_file;