Browse Source

Merge pull request #3771 from benru/dump-romfs-with-updates

Dump RomFS command to include Updates
pull/15/merge
bunnei 6 years ago
committed by GitHub
parent
commit
8e64fb3225
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/yuzu/main.cpp

4
src/yuzu/main.cpp

@ -1304,7 +1304,9 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa
FileSys::VirtualFile romfs; FileSys::VirtualFile romfs;
if (*romfs_title_id == program_id) { if (*romfs_title_id == program_id) {
romfs = file;
const u64 ivfc_offset = loader->ReadRomFSIVFCOffset();
FileSys::PatchManager pm{program_id};
romfs = pm.PatchRomFS(file, ivfc_offset, FileSys::ContentRecordType::Program);
} else { } else {
romfs = installed.GetEntry(*romfs_title_id, FileSys::ContentRecordType::Data)->GetRomFS(); romfs = installed.GetEntry(*romfs_title_id, FileSys::ContentRecordType::Data)->GetRomFS();
} }

Loading…
Cancel
Save