diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-24 16:19:41 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-28 15:32:39 -0500 |
commit | 4c20a3982807386a2e5fc6f536498b73e6f4f6ce (patch) | |
tree | 0b26e40304df106c4e0b1ade9fa60bccdd8b240b /src/core/loader/loader.h | |
parent | 621b25b6be99d357c9996fcb2df77f42c7dc2001 (diff) |
loader: Add accessor for Manual RomFS
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 30eacd803b..01f984098e 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -259,6 +259,15 @@ public: return ResultStatus::ErrorNotImplemented; } + /** + * Get the RomFS of the manual of the application + * @param file The raw manual RomFS of the game + * @return ResultStatus result of function + */ + virtual ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) { + return ResultStatus::ErrorNotImplemented; + } + protected: FileSys::VirtualFile file; bool is_loaded = false; |