file_sys/patch_manager: Remove unnecessary if-statements (#1586)

* remove unnecessary if-statements

* Addressed feedback
This commit is contained in:
Frederic L 2018-10-28 07:30:29 +01:00 committed by bunnei
parent 0d449b77e2
commit 72d10ce66c

View File

@ -61,13 +61,12 @@ VirtualDir PatchManager::PatchExeFS(VirtualDir exefs) const {
// Game Updates // Game Updates
const auto update_tid = GetUpdateTitleID(title_id); const auto update_tid = GetUpdateTitleID(title_id);
const auto update = installed->GetEntry(update_tid, ContentRecordType::Program); const auto update = installed->GetEntry(update_tid, ContentRecordType::Program);
if (update != nullptr) {
if (update->GetStatus() == Loader::ResultStatus::ErrorMissingBKTRBaseRomFS && if (update != nullptr && update->GetExeFS() != nullptr &&
update->GetExeFS() != nullptr) { update->GetStatus() == Loader::ResultStatus::ErrorMissingBKTRBaseRomFS) {
LOG_INFO(Loader, " ExeFS: Update ({}) applied successfully", LOG_INFO(Loader, " ExeFS: Update ({}) applied successfully",
FormatTitleVersion(installed->GetEntryVersion(update_tid).get_value_or(0))); FormatTitleVersion(installed->GetEntryVersion(update_tid).get_value_or(0)));
exefs = update->GetExeFS(); exefs = update->GetExeFS();
}
} }
return exefs; return exefs;