diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-24 22:19:41 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-28 21:32:39 +0100 |
commit | 4c20a3982807386a2e5fc6f536498b73e6f4f6ce (patch) | |
tree | 0b26e40304df106c4e0b1ade9fa60bccdd8b240b /src/core/loader/nsp.h | |
parent | hid: Make Hid service accessible and add GetPressState (diff) | |
download | yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.gz yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.bz2 yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.lz yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.xz yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.zst yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.zip |
Diffstat (limited to 'src/core/loader/nsp.h')
-rw-r--r-- | src/core/loader/nsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/loader/nsp.h b/src/core/loader/nsp.h index 32eb0193d..0841578d4 100644 --- a/src/core/loader/nsp.h +++ b/src/core/loader/nsp.h @@ -44,6 +44,8 @@ public: ResultStatus ReadIcon(std::vector<u8>& buffer) override; ResultStatus ReadTitle(std::string& title) override; ResultStatus ReadControlData(FileSys::NACP& nacp) override; + ResultStatus ReadDeveloper(std::string& developer) override; + ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) override; private: std::unique_ptr<FileSys::NSP> nsp; |