summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/patch_manager.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 16:07:40 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-28 16:14:36 +0200
commit511ee03a21f0f47c46afe51125aad7b9b8c980c8 (patch)
tree6ec03bc6e2fdaa3d9919e32c2e7d5b9ae736a6f7 /src/core/file_sys/patch_manager.cpp
parentfilesystem: Open a read-only directory for SDMC mods (diff)
downloadyuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar.gz
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar.bz2
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar.lz
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar.xz
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.tar.zst
yuzu-511ee03a21f0f47c46afe51125aad7b9b8c980c8.zip
Diffstat (limited to 'src/core/file_sys/patch_manager.cpp')
-rw-r--r--src/core/file_sys/patch_manager.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp
index 13d294ad8..7c0950bb0 100644
--- a/src/core/file_sys/patch_manager.cpp
+++ b/src/core/file_sys/patch_manager.cpp
@@ -407,7 +407,7 @@ static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType t
}
VirtualFile PatchManager::PatchRomFS(VirtualFile romfs, u64 ivfc_offset, ContentRecordType type,
- VirtualFile update_raw) const {
+ VirtualFile update_raw, bool apply_layeredfs) const {
const auto log_string = fmt::format("Patching RomFS for title_id={:016X}, type={:02X}",
title_id, static_cast<u8>(type));
@@ -447,7 +447,9 @@ VirtualFile PatchManager::PatchRomFS(VirtualFile romfs, u64 ivfc_offset, Content
}
// LayeredFS
- ApplyLayeredFS(romfs, title_id, type, fs_controller);
+ if (apply_layeredfs) {
+ ApplyLayeredFS(romfs, title_id, type, fs_controller);
+ }
return romfs;
}