diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-06 23:58:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-06 23:58:24 -0400 |
| commit | 6e4d2e672d1083f29186ea0ddcb33cd634e360e3 (patch) | |
| tree | cbd20aab8705f8efac340c509ca71b08865a1417 /src/core/file_sys/romfs_factory.h | |
| parent | 2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da (diff) | |
| parent | 38c2ac95af814e21e65e2785b276c4f64bfead71 (diff) | |
Merge pull request #1396 from DarkLordZach/packed-updates
loader: Add support for packed updates
Diffstat (limited to 'src/core/file_sys/romfs_factory.h')
| -rw-r--r-- | src/core/file_sys/romfs_factory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/file_sys/romfs_factory.h b/src/core/file_sys/romfs_factory.h index 2cace8180..7724c0b23 100644 --- a/src/core/file_sys/romfs_factory.h +++ b/src/core/file_sys/romfs_factory.h @@ -32,11 +32,13 @@ public: explicit RomFSFactory(Loader::AppLoader& app_loader); ~RomFSFactory(); + void SetPackedUpdate(VirtualFile update_raw); ResultVal<VirtualFile> OpenCurrentProcess(); ResultVal<VirtualFile> Open(u64 title_id, StorageId storage, ContentRecordType type); private: VirtualFile file; + VirtualFile update_raw; bool updatable; u64 ivfc_offset; }; |
