diff options
author | Ben Russell <ben@benru.co.uk> | 2020-04-23 13:05:50 +0100 |
---|---|---|
committer | Ben Russell <ben@benru.co.uk> | 2020-04-23 13:06:18 +0100 |
commit | dd43d725c619980bb07d3cae0410b15c51dbdfd7 (patch) | |
tree | e91b3d3e702d18445f40959b744eec8fb10fa597 /src | |
parent | eb26e9e7117bf7a10ef6ca39d52bf6f00bd91859 (diff) |
Dump RomFS command to include Updates
Patch the RomFS with the selected updates before dumping. Previously the resulting RomFS only contained data from the original title.
To dump the RomFS without updates the user can disable the update under Properties before choosing Dump RomFS.
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 05baec7e1..506f75307 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1304,7 +1304,9 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa FileSys::VirtualFile romfs; if (*romfs_title_id == program_id) { - romfs = file; + u64 ivfc_offset = loader->ReadRomFSIVFCOffset(); + FileSys::PatchManager pm{program_id}; + romfs = pm.PatchRomFS(file, ivfc_offset, FileSys::ContentRecordType::Program); } else { romfs = installed.GetEntry(*romfs_title_id, FileSys::ContentRecordType::Data)->GetRomFS(); } |