summaryrefslogtreecommitdiff
path: root/src/core/loader/xci.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-07-28 21:39:42 -0400
committerGravatar Zach Hilman2018-08-01 00:16:54 -0400
commit239a3113e4c6a53a2c7b12e67a0f21afae24b0aa (patch)
tree027bc4288f08be240d0b9b2a5f6c6431e76b8b4f /src/core/loader/xci.h
parentExtract mbedtls to cpp file (diff)
downloadyuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.gz
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.tar.xz
yuzu-239a3113e4c6a53a2c7b12e67a0f21afae24b0aa.zip
Make XCI comply to review and style guidelines
Diffstat (limited to 'src/core/loader/xci.h')
-rw-r--r--src/core/loader/xci.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/xci.h b/src/core/loader/xci.h
index a9cee1ca3..2a09caa5f 100644
--- a/src/core/loader/xci.h
+++ b/src/core/loader/xci.h
@@ -13,6 +13,7 @@ namespace Loader {
13class AppLoader_XCI final : public AppLoader { 13class AppLoader_XCI final : public AppLoader {
14public: 14public:
15 explicit AppLoader_XCI(FileSys::VirtualFile file); 15 explicit AppLoader_XCI(FileSys::VirtualFile file);
16 ~AppLoader_XCI();
16 17
17 /** 18 /**
18 * Returns the type of the file 19 * Returns the type of the file
@@ -30,8 +31,6 @@ public:
30 ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override; 31 ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
31 ResultStatus ReadProgramId(u64& out_program_id) override; 32 ResultStatus ReadProgramId(u64& out_program_id) override;
32 33
33 ~AppLoader_XCI();
34
35private: 34private:
36 FileSys::ProgramMetadata metadata; 35 FileSys::ProgramMetadata metadata;
37 36