diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/file_sys/patch_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index b43880e92..3fc44fb5c 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp | |||
| @@ -209,7 +209,7 @@ VirtualFile PatchManager::PatchRomFS(VirtualFile romfs, u64 ivfc_offset, Content | |||
| 209 | const auto new_nca = std::make_shared<NCA>(update, romfs, ivfc_offset); | 209 | const auto new_nca = std::make_shared<NCA>(update, romfs, ivfc_offset); |
| 210 | if (new_nca->GetStatus() == Loader::ResultStatus::Success && | 210 | if (new_nca->GetStatus() == Loader::ResultStatus::Success && |
| 211 | new_nca->GetRomFS() != nullptr) { | 211 | new_nca->GetRomFS() != nullptr) { |
| 212 | LOG_INFO(Loader, " RomFS: Update (XCI) applied successfully"); | 212 | LOG_INFO(Loader, " RomFS: Update (PACKED) applied successfully"); |
| 213 | romfs = new_nca->GetRomFS(); | 213 | romfs = new_nca->GetRomFS(); |
| 214 | } | 214 | } |
| 215 | } | 215 | } |
| @@ -253,7 +253,7 @@ std::map<PatchType, std::string> PatchManager::GetPatchVersionNames(VirtualFile | |||
| 253 | FormatTitleVersion(meta_ver.get(), TitleVersionFormat::ThreeElements)); | 253 | FormatTitleVersion(meta_ver.get(), TitleVersionFormat::ThreeElements)); |
| 254 | } | 254 | } |
| 255 | } else if (update_raw != nullptr) { | 255 | } else if (update_raw != nullptr) { |
| 256 | out[PatchType::Update] = "XCI"; | 256 | out[PatchType::Update] = "PACKED"; |
| 257 | } | 257 | } |
| 258 | } | 258 | } |
| 259 | 259 | ||