summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-12-24 16:19:41 -0500
committerGravatar Zach Hilman2018-12-28 15:32:39 -0500
commit4c20a3982807386a2e5fc6f536498b73e6f4f6ce (patch)
tree0b26e40304df106c4e0b1ade9fa60bccdd8b240b /src/core/loader/loader.h
parenthid: Make Hid service accessible and add GetPressState (diff)
downloadyuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.gz
yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.tar.xz
yuzu-4c20a3982807386a2e5fc6f536498b73e6f4f6ce.zip
loader: Add accessor for Manual RomFS
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 30eacd803..01f984098 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -259,6 +259,15 @@ public:
259 return ResultStatus::ErrorNotImplemented; 259 return ResultStatus::ErrorNotImplemented;
260 } 260 }
261 261
262 /**
263 * Get the RomFS of the manual of the application
264 * @param file The raw manual RomFS of the game
265 * @return ResultStatus result of function
266 */
267 virtual ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) {
268 return ResultStatus::ErrorNotImplemented;
269 }
270
262protected: 271protected:
263 FileSys::VirtualFile file; 272 FileSys::VirtualFile file;
264 bool is_loaded = false; 273 bool is_loaded = false;