diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-08 18:27:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 18:27:19 +0200 |
commit | fd9da4232b2f989257630884511ba50e108ad703 (patch) | |
tree | 0073d61bfa93a8ab0681623bf00428a5731b8854 /src/core/loader/xci.h | |
parent | Merge pull request #968 from lioncash/vec (diff) | |
parent | configure_gamelist: Use explicit QVariant constructor (diff) | |
download | yuzu-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.h | 5 |
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 |