diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-28 10:07:40 -0400 |
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-28 10:14:36 -0400 |
| commit | 511ee03a21f0f47c46afe51125aad7b9b8c980c8 (patch) | |
| tree | 6ec03bc6e2fdaa3d9919e32c2e7d5b9ae736a6f7 /src/core/file_sys/patch_manager.h | |
| parent | 6ac978426c68270ff022e719f7544251d42b19cf (diff) | |
patch_manager: Do not apply LayeredFS mods when dumping
We should not apply any mods when dumping a game's RomFS.
Diffstat (limited to 'src/core/file_sys/patch_manager.h')
| -rw-r--r-- | src/core/file_sys/patch_manager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/patch_manager.h b/src/core/file_sys/patch_manager.h index fb1853035..3be871f35 100644 --- a/src/core/file_sys/patch_manager.h +++ b/src/core/file_sys/patch_manager.h @@ -64,7 +64,8 @@ public: // - LayeredFS [[nodiscard]] VirtualFile PatchRomFS(VirtualFile base, u64 ivfc_offset, ContentRecordType type = ContentRecordType::Program, - VirtualFile update_raw = nullptr) const; + VirtualFile update_raw = nullptr, + bool apply_layeredfs = true) const; // Returns a vector of pairs between patch names and patch versions. // i.e. Update 3.2.2 will return {"Update", "3.2.2"} |
