summaryrefslogtreecommitdiffstats
path: root/src/core/loader/xci.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 18:27:19 +0200
committerGitHub <noreply@github.com>2018-08-08 18:27:19 +0200
commitfd9da4232b2f989257630884511ba50e108ad703 (patch)
tree0073d61bfa93a8ab0681623bf00428a5731b8854 /src/core/loader/xci.h
parentMerge pull request #968 from lioncash/vec (diff)
parentconfigure_gamelist: Use explicit QVariant constructor (diff)
downloadyuzu-fd9da4232b2f989257630884511ba50e108ad703.tar
yuzu-fd9da4232b2f989257630884511ba50e108ad703.tar.gz
yuzu-fd9da4232b2f989257630884511ba50e108ad703.tar.bz2
yuzu-fd9da4232b2f989257630884511ba50e108ad703.tar.lz
yuzu-fd9da4232b2f989257630884511ba50e108ad703.tar.xz
yuzu-fd9da4232b2f989257630884511ba50e108ad703.tar.zst
yuzu-fd9da4232b2f989257630884511ba50e108ad703.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/xci.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/loader/xci.h b/src/core/loader/xci.h
index 0dbcfbdf8..973833050 100644
--- a/src/core/loader/xci.h
+++ b/src/core/loader/xci.h
@@ -33,12 +33,17 @@ public:
ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override;
ResultStatus ReadProgramId(u64& out_program_id) override;
+ ResultStatus ReadIcon(std::vector<u8>& buffer) override;
+ ResultStatus ReadTitle(std::string& title) override;
private:
FileSys::ProgramMetadata metadata;
std::unique_ptr<FileSys::XCI> xci;
std::unique_ptr<AppLoader_NCA> nca_loader;
+
+ FileSys::VirtualFile icon_file;
+ std::shared_ptr<FileSys::NACP> nacp_file;
};
} // namespace Loader