Przeglądaj źródła

qt: ensure packed update nca is applied to the correct base

Liam 2 lat temu
rodzic
commit
9df3794a83
1 zmienionych plików z 7 dodań i 0 usunięć
  1. 7 0
      src/yuzu/main.cpp

+ 7 - 0
src/yuzu/main.cpp

@@ -2592,6 +2592,13 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa
         return;
         return;
     }
     }
 
 
+    const FileSys::NCA update_nca{packed_update_raw, nullptr};
+    if (type != FileSys::ContentRecordType::Program ||
+        update_nca.GetStatus() != Loader::ResultStatus::ErrorMissingBKTRBaseRomFS ||
+        update_nca.GetTitleId() != FileSys::GetUpdateTitleID(title_id)) {
+        packed_update_raw = {};
+    }
+
     const auto base_romfs = base_nca->GetRomFS();
     const auto base_romfs = base_nca->GetRomFS();
     if (!base_romfs) {
     if (!base_romfs) {
         failed();
         failed();