summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/patch_manager.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp
index 8d062eb3e..f56b1c773 100644
--- a/src/core/file_sys/patch_manager.cpp
+++ b/src/core/file_sys/patch_manager.cpp
@@ -57,6 +57,15 @@ VirtualDir PatchManager::PatchExeFS(VirtualDir exefs) const {
57 if (exefs == nullptr) 57 if (exefs == nullptr)
58 return exefs; 58 return exefs;
59 59
60 if (Settings::values.dump_exefs) {
61 LOG_INFO(Loader, "Dumping ExeFS for title_id={:016X}", title_id);
62 const auto dump_dir = Service::FileSystem::GetModificationDumpRoot(title_id);
63 if (dump_dir != nullptr) {
64 const auto exefs_dir = GetOrCreateDirectoryRelative(dump_dir, "/exefs");
65 VfsRawCopyD(exefs, exefs_dir);
66 }
67 }
68
60 const auto installed = Service::FileSystem::GetUnionContents(); 69 const auto installed = Service::FileSystem::GetUnionContents();
61 70
62 // Game Updates 71 // Game Updates