diff --git a/src/xenia/patcher/patch_db.cc b/src/xenia/patcher/patch_db.cc index e3acb573d..2f8f6bfad 100644 --- a/src/xenia/patcher/patch_db.cc +++ b/src/xenia/patcher/patch_db.cc @@ -201,8 +201,7 @@ std::vector PatchDB::GetTitlePatches( bool hash_exist = std::find(entry.hashes.cbegin(), entry.hashes.cend(), hash) != entry.hashes.cend(); - return entry.title_id == title_id && - (entry.hashes.empty() || hash_exist); + return entry.title_id == title_id && hash_exist; }); return title_patches;